:root {
  color-scheme: light dark;
  --fg: #1a1a1a;
  --bg: #ffffff;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}
