/* Shared palette and base for the placeholder card and the article copies.
   Carried over from the Spatial personal site palette. */

:root {
  color-scheme: dark light;
  --bg: #111b1e;
  --bg-deep: #0b1316;
  --ink: #e7ebe3;
  --muted: #a8b3b1;
  --faint: #90a2a0;
  --line: #34474a;
  --accent: #cdddb7;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ece9e0;
    --bg-deep: #e1ded4;
    --ink: #1e2826;
    --muted: #4e5a55;
    --faint: #4e5a55;
    --line: #c5cbc2;
    --accent: #395c50;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  background-image: radial-gradient(60rem 30rem at 78% -12%, rgba(205, 221, 183, 0.09), transparent 62%);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}