html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fdfdfd;
  color: #444;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.container {
  padding-top: 20vh;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  opacity: 0.9;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0.5rem 0;
}

p {
  font-weight: 400;
  font-size: 1rem;
  color: #888;
  margin: 0.5rem 0;
}

a.easter-egg {
  position: fixed;
  bottom: 5px;
  left: 10px;
  font-size: 10px;
  color: #ccc;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #111;
    color: #bbb;
  }

  p {
    color: #666;
  }

  a.easter-egg {
    color: #444;
  }

  .logo {
    opacity: 0.8;
    filter: brightness(0.9);
  }
}

