:root {
  color-scheme: light dark;
  --fg: #101014;
  --muted: #5c5c6a;
  --bg: #fbfbfd;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fg: #f2f2f5;
    --muted: #9a9aa8;
    --bg: #101014;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

main {
  max-width: 34rem;
}

h1 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

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

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

.pin {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  opacity: 0.7;
}
