html {
  margin: 0;
}

body {
  margin: 1rem 3rem 1rem 3rem;
  background-color: #efe6d4;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

h1 {
  font-size: 4rem;
  margin: 1rem 0rem 1rem 0rem;
  text-align: center;
  color: #53476a;
}

h2.chapterNum {
  font-size: 2rem;
  margin: 1rem 0rem 1rem 0rem;
  text-align: center;
  color: #375b41;
}

p {
  letter-spacing: 1px;
  font-size: 3rem;
  line-height: 4.5rem;
  color: #505655;
  font-weight: 300;
  margin: 0rem 0rem 2.5rem 0rem;
}

p.finishLine {
  text-align: center;
  color: #c6a564;
}

img.floatR {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}

img.floatL {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}

img.center {
  position: relative;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

div.poem p {
  margin: 0rem 0rem 0rem 0rem;
}

span.floatR {
  float: right;
}

u {
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-bottom: 2px dotted #c6a564;
  line-height: 1.2em;
}

u > em {
  font-size: 0.5em;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2em;
  opacity: 0;
  transition: opacity 0.5s;
  background-color: #c6a564;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 3px 6px 3px 6px;
  position: absolute;
  z-index: 1;
  top: 100%;
  width: calc(100% - 15px);
  left: 50%;
  margin-left: -50%;
  display: table;
}

u > em:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  border-width: 10px;
  margin-left: -10px;
  border-style: solid;
  border-color: transparent transparent #c6a564 transparent;
}

u:hover {
  border-bottom: none;
}

u:hover > em {
  visibility: visible;
  opacity: 1;
}

p.maneeDir {
  color: #42007d;
  margin: 0px 0px 20px 0px;
  border-bottom: 2px dotted;
}

p.maneeDir::before {
  content: "Level ";
}

p.maneeFile {
  margin: 0px 0px 0px 40px;
}

p.maneeFile a {
  text-decoration: none;
  color: #970000;
}