/* Grund-styling — byg selv videre herfra */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #0f1115;
  color: #e8e8e8;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.hero {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #9aa0a6;
}

.hint {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #5f6368;
}

code {
  background: #1c1f26;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.95em;
}
