:root {
  color-scheme: light dark;
  --bg: #fafafa;
  --fg: #0a0a0a;
  --muted: #525252;
  --accent: #0a0a0a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --fg: #fafafa;
    --muted: #a3a3a3;
    --accent: #fafafa;
  }
}

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

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 2rem;
}

main {
  display: grid;
  place-items: center;
  text-align: center;
}

main > * + * {
  margin-top: 1rem;
}

h1 {
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.5;
  max-width: 32rem;
}

footer {
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: center;
  padding-top: 2rem;
  letter-spacing: 0.01em;
}
