body {
    font-family: Georgia, serif;
    font-size: 1em;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f8f8;
}

p {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
}

p.center {
    text-align: center;
}

p.quote {
    padding-left:4ch;
    max-width: 65ch;
    font-size: 0.8em;
}

p.quoteauthor {
    padding-right:4ch;
    max-width: 65ch;
    font-size: 0.8em;
    text-align: right;
}

p img.intext {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1ch;
    margin-bottom: 1ch;
    display: block;
    width: 35ch;
    height: auto;
}

p.h1 {
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: auto;
    margin-right: auto;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.03em;
    word-spacing: 0.06em;
}

p.h2 {
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.03em;
    word-spacing: 0.06em;
}

p.h3 {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.17em;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.03em;
    word-spacing: 0.06em;
    text-transform: uppercase;
}

p a {
    color: #333333;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

p.author {
    padding-right:4ch;
    max-width: 65ch;
    font-size: 0.8em;
    text-align: right;
}

p.signature {
    padding-left: 40%;
}

ol {
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
    margin-left: auto;
    margin-right: auto;
    padding-inline-start: 0px;
}

ol.toc {
    max-width: 70ch;
    list-style-type: none;
}

ol.toc li a {
    color: #333333;
    text-decoration: none;
}

ol.toc li a:hover {
    text-decoration: underline;
}

hr {
    max-width: 70ch;
}

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
    font-size: 0.8em;
    text-align: center;
}

table.navigation {
    width: 100%;
    margin-bottom: 0px;
    margin-top:0px;
    max-width: 115ch;
    font-size: 0.6em;
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
    border: none;
}

table.navigation td.prev {
    text-align: left;
    border: none;
}

table.navigation td.home {
    text-align: center;
    border: none;
    width: 5ch;
}

table.navigation td.next {
    text-align: right;
    border: none;
}

span.footnote-container {
  position: relative;
  display: inline-block;
  cursor: help;
  border-bottom: 1px dotted #333;
}

span.footnote-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

span.footnote-container:hover .footnote-text {
  visibility: visible;
  opacity: 1;
}