:root {
  color-scheme: dark;
  --text: #f4f0e8;
  --muted: #b9b0a2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #121314;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 14vw, 140px);
  line-height: 1;
}

p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 4vw, 34px);
}
