:root {
  --bg: #fafafa;
  --fg: #1a1a1a;
  --muted: #666;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141414;
    --fg: #f0f0f0;
    --muted: #a0a0a0;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  text-align: center;
}

main {
  max-width: 32rem;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.5vw, 1.125rem);
}

a {
  color: inherit;
}
