:root {
  color-scheme: light dark;
  --bg: #0d0f12;
  --fg: #f4f6f8;
  --muted: #9ca3af;
  --line: #2a2f36;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  align-items: center;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  justify-content: center;
  padding: 32px;
}

main {
  max-width: 560px;
  width: 100%;
}

.wordmark {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: 0;
  padding-bottom: 20px;
}

h1 {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 32px 0 0;
}
