/* Reset */
body, h1, p {
  margin: 0;
  padding: 0;
}

/* Page layout */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

/* Title */
.site-name {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00ffc6;
}

/* Message */
.message {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

/* Contact */
.contact {
  font-size: 1rem;
  color: #cccccc;
}

.contact a {
  color: #00aaff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
