:root {
  color-scheme: light dark;
  --bg: #1b1b1b;
  --fg: #f2f2f0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  text-align: center;
  padding: 2rem;
}

.page__title {
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin: 0 0 0.75rem;
}

.page__line {
  opacity: 0.7;
  margin: 0;
  font-size: 1rem;
}
