:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --text: #1a1815;
  --accent: #8b2e1f;
  --accent-hover: #652014;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(139, 46, 31, 0.12), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

.hero {
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

p {
  margin: 0;
  font-size: 1.1rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}
