:root {
  color-scheme: dark;
  --color-background: #07111f;
  --color-text: #f2eee7;
  --color-muted: #b6aaa0;
  --color-accent: #b7794f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: Georgia, "Times New Roman", serif;
}

.placeholder {
  display: grid;
  min-height: 100vh;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}
