*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Only the root scrolls. Setting overflow on <body> as well would give the
   page a second, nested scrollbar. */
html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Mahameru', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
}

img {
  display: block;
  max-width: 100%;
}

h1 {
  margin: 0;
  font-weight: 600;
}
