:root {
  --pine: #1b3017;
  --night: #10230f;
  --olive: #7d7f42;
  --paper: #e7e2b9;
  --cream: #efebce;
  --ink: #555b43;
  --line: rgba(82, 88, 63, 0.22);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
body.menu-open {
  overflow: hidden;
}
img,
video {
  display: block;
  width: 100%;
}
a {
  color: inherit;
}
em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--olive);
}

