* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.container {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.logo {
  width: min(604px, 100%);
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  max-width: 400px;
  margin-bottom: 2rem;
  color: #ccc;
  font-size: 1.125rem;
  line-height: 1.6;
}

a {
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus-visible {
  color: #b0e0e6;
}

.spinner {
  display: flex;
  gap: 0.5rem;
}

.spinner div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00b3a4;
  animation: bounce 0.6s infinite alternate;
}

.spinner div:nth-child(2) {
  animation-delay: 0.2s;
}

.spinner div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    opacity: 0.3;
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spinner div {
    animation: none;
  }
}
