/*
 * Reset and element defaults. Nothing component- or page-specific lives
 * here — that goes in its own file.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
}
