@charset "UTF-8";
/* BASED ON:
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, select, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
  background-color: transparent; }

body {
  color: black;
  background-color: white; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@font-face {
  font-family: "Lexend-Regular";
  src: url("fonts/Lexend-Regular.woff2") format("woff2"), url("fonts/Lexend-Regular.woff") format("woff"), url("fonts/Lexend-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
*:focus {
  outline: 2px solid #8f0075; }

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  line-height: 1.5rem;
  background-color: #7b7b7b;
  font-family: Lexend-Regular, serif; }

div#content {
  flex: 1;
  overflow-y: auto;
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 3rem;
  background-color: white;
  color: black; }
  div#content h1 {
    font-size: 1.953125rem;
    margin-bottom: 1.5rem;
    margin-top: 3.15rem;
    line-height: 1.35rem; }
  div#content h2 {
    font-size: 1.5625rem;
    margin-bottom: 1.5rem;
    margin-top: 2.1rem;
    line-height: 0.9rem; }
  div#content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 2.1rem;
    line-height: 0.9rem; }
  div#content p, div#content blockquote, div#content pre, div#content li {
    margin-bottom: 1.5rem; }
  div#content a {
    border-bottom: 1px dotted black; }
  div#content a:hover {
    border-bottom: 1px solid black; }
  div#content blockquote {
    padding: 0 3rem;
    font-size: 90%; }
  div#content em, div#content i {
    font-style: italic; }
  div#content strong, div#content b {
    font-weight: bold; }
  div#content pre, div#content code {
    font-family: monospace; }
  div#content sup {
    vertical-align: baseline;
    position: relative;
    top: -0.3rem;
    line-height: 0;
    font-size: 90%; }
  div#content li {
    padding-left: 1em; }
  div#content li::before {
    content: "•";
    display: inline-block;
    width: 1em;
    margin-left: -1em; }

div#postamble {
  display: flex;
  height: 4.5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: #7b7b7b;
  color: white; }
  div#postamble a {
    border-bottom: 1px dotted white; }
  div#postamble a:hover {
    border-bottom: 1px solid white; }
  div#postamble ul {
    display: flex; }
    div#postamble ul li:not(:last-child):after {
      content: "|";
      margin: 0 0.5em; }
