:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --background: #101114;
  --foreground: #f1eee8;
  --muted: #9c9da2;
  --accent: #cf8f5b;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
}

main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  align-self: center;
  margin: 2rem 0;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.note {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.45;
}
