/* A deliberately small stylesheet. Its real job for now is to prove that the static
   pipeline works: collectstatic gathers it, WhiteNoise serves it, and with DEBUG=False
   its name carries a content hash. */

:root {
  color-scheme: light dark;
  --page-background: #ffffff;
  --page-foreground: #1a1a1a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page-background: #14161a;
    --page-foreground: #e8e8e8;
  }
}

body {
  margin: 0;
  background: var(--page-background);
  color: var(--page-foreground);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 0 0 0.5rem;
}
