:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8f9fa;
  color: #18181b;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
}

main {
  width: min(34rem, calc(100% - 3rem));
  padding: 4rem 0;
}

.marke {
  margin: 0 0 2rem;
  color: #71717a;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.status {
  margin: 2rem 0 .75rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.hinweis {
  margin: 0 0 2rem;
  color: #71717a;
  line-height: 1.65;
}

a {
  color: inherit;
  text-underline-offset: .25em;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #09090b;
    color: #fafafa;
  }

  .marke,
  .hinweis {
    color: #a1a1aa;
  }
}
