:root {
  color-scheme: light dark;
  --bg: #fbfbfa;
  --fg: #1c1c1a;
  --mut: #6b6b66;
  --lin: #d8d8d2;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141413;
    --fg: #ededea;
    --mut: #92928c;
    --lin: #2e2e2b;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 34rem;
  text-align: center;
}

.marke {
  width: 2.5rem;
  height: 1px;
  margin: 0 auto 2.5rem;
  background: var(--lin);
}

h1 {
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

p {
  margin-top: 0.9rem;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--mut);
}
