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

html, body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: "Futura", "Century Gothic", "Avenir Next", "Avenir", sans-serif;
  text-align: center;
  padding: 1.5rem;
}

main {
  max-width: 40rem;
}

h1 {
  font-weight: 500;
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

p {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
}

a:hover {
  opacity: 0.6;
}

.divider {
  margin: 0 0.6em;
  opacity: 0.4;
}

.fade-in {
  opacity: 0;
  transform: translateY(0.75rem);
  animation: fade-in 0.6s ease-out forwards;
}

p.fade-in {
  animation-delay: 0.15s;
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
