body {
  background: linear-gradient(180deg, #f3ece4 0%, #f8f5ef 48%, #efe6dc 100%);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--copper-deep);
}

a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid rgba(180, 94, 47, 0.35);
  outline-offset: 3px;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

code {
  background: rgba(19, 33, 42, 0.08);
  border-radius: 0.35rem;
  padding: 0.15rem 0.35rem;
}

