:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #10231c;
  background: #f4f0e8;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgb(202 223 211 / 75%), transparent 28rem),
    #f4f0e8;
}

main {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #3d6857;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.intro {
  margin: 1.75rem 0 0;
  color: #52635c;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

@media (prefers-reduced-motion: no-preference) {
  main {
    animation: arrive 700ms ease-out both;
  }
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
}
