:root {
  color-scheme: light dark;
  --fg: #0f172a;
  --bg: #f8fafc;
  --muted: #64748b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg: #f8fafc;
    --bg: #0f172a;
    --muted: #94a3b8;
  }
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

main {
  text-align: center;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

p {
  color: var(--muted);
  margin: 0.25rem 0;
}

.status {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
