/* Deliberately an external stylesheet, not a <style> block.
   `infra` sets a Content-Security-Policy on the zone with style-src 'self', so
   inline styles do not render in production. Keeping the placeholder under the
   same constraint the real site will have. */

:root {
  color-scheme: light dark;
  --fg: #16130f;
  --muted: #6b625a;
  --bg: #faf8f5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg: #f2ede6;
    --muted: #a2988c;
    --bg: #16130f;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font:
    17px/1.6 ui-serif,
    Georgia,
    serif;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1.5rem;
}

main {
  max-width: 34rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
}

.muted {
  color: var(--muted);
}

a {
  color: inherit;
}
