:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
}

main {
  max-width: 34rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #a3a3a3;
}

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

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.cta:hover {
  text-decoration: underline;
}
