
/* other bg options: cornsilk, lightcyan, linen, #f2f2f2 */

body {
  max-width: 730px;
  margin: auto;
  padding: 2px 8px 10px;
  font-family: "DejaVu Serif", serif;
  font-size: 10pt;
  background-color: white;
}

/* better for screens in portrait mode */
/* slight change in bg color to signal when it is in play */

@media screen and (orientation: portrait) {
  body {
    max-width: 100vw;
    font-size: max(2vw, 10pt);
    background-color: #fffae6
  }
}

a:link    { text-decoration: none; color: blue }
a:visited { text-decoration: none; color: firebrick }
/* a:hover { font-weight: bold } */

address,footer {
  text-align: right;
  font-size: 90%;
}

