body {
  background-color: #fdf6e3;
  /* A wide column needs the page margin back; the notes take the right side. */
  padding: 40px 40px 120px;
  /* The text and its margin notes come to about 1370px together. Past that the
     page was not using the width, it was just leaving it empty on the right, so
     cap it and centre the block instead. */
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}

/* 120px of margin is right on a wide screen and absurd on a phone, where it
   would eat two thirds of the width and leave 14 characters to a line. */
@media (max-width: 1000px) {
  body {
    padding: 5vw;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
}
a:link {
  text-shadow: none;
}
