:root {
  color-scheme: light dark;
  --bg: #0b0c10;
  --fg: #e8e8e8;
  --dim: #a8a8a8;
  --accent: #35d6bd;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafaf7;
    --fg: #14181f;
    --dim: #5a6271;
    --accent: #007f6c;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, system-ui, sans-serif;
  line-height: 1.6;
  text-align: center;
}

main {
  max-width: 36rem;
}

p {
  color: var(--dim);
}

a {
  color: var(--accent);
  text-underline-offset: 2px;
}
