:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #080a0d;
  color: #f4f7fa;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgb(35 45 58 / 34%), transparent 40%),
    linear-gradient(145deg, #0d1117 0%, #080a0d 60%, #050608 100%);
}

main {
  display: grid;
  place-items: center;
  padding: 2rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 0 2.5rem rgb(136 181 226 / 12%);
}

footer {
  padding: 1.5rem 2rem;
  color: #8f99a6;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  h1 {
    animation: reveal 900ms ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(0.4rem);
    }
  }
}
