@charset "utf-8";
@font-face {
  font-family: courier-prime;
  src: url(fonts/courierprime-regular.ttf);
}
@font-face {
  font-family: courier-prime;
  font-weight: bold;
  src: url(fonts/courierprime-bold.ttf);
}
@font-face {
  font-family: courier-prime;
  font-style: italic;
  src: url(fonts/courierprime-italic.ttf);
}
body {
  background-color: #444444;
  color: #4d443a;
  font-family: courier-prime, "Comic Sans MS", monospace;
}
.wrapper {
  background-color: #ede8d0;
  max-width: 800px;
  min-height: 1100px;
  padding: 80px;
  margin: 30px auto;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0px 5px 20px #222222;
}
.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 {
  font-size: 4.5em;
  text-align: left;
  line-height: 100%;
}
h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 1.5em;
}
h3 {
  margin-top: 1.75em;
  margin-bottom: 1em;
}
.center {
  text-align: center;
}
.narrow {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.light {
  color: #b3a698;
}
.red {
  color: red;
}
.footertext {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
td,
th {
  padding: 0.5em;
  text-align: left;
}
th {
  background-color: #b3a698;
}
.table-of-contents td {
  border: 0;
  border-bottom: 3px dotted #4d443a;
}
.table-of-contents td:last-child {
  text-align: right;
}
table.bordered td,
table.bordered th {
  border: 3px solid #4d443a;
}
@media print {
  body,
  page {
    color: #222222;
    margin: 0;
    box-shadow: 0;
  }
  body {
    font-size: 12pt;
  }
  .wrapper {
    box-shadow: none;
    padding: 80px;
    height: 297mm;
    margin-top: 0;
    margin-bottom: 0;
  }
}
