/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: #130000;
  color: black;
  font-family: Sans-serif;
  line-height: 1.4em;
}

p,
li,
h1,
h2,
h3 {
  color: white;
  font-family: Sans-serif;
}

li {
  margin-left: 20px;
}

hr {
  text-align: center;
  color: #a00000;
  border: none;
}

hr::before {
  content: "—————————————————X";
  font-weight: 600;
  color: red;
}

hr::after {
  content: "—————————————————";
  font-weight: 600;
  color: red;
}

div.header {
  text-align: center;
  background: #cf0000;
  border-top: 5px solid #a20000;
  border-left: 5px solid #a20000;
  border-right: 5px solid #540000;
  border-bottom: 5px solid #540000;
  box-shadow: inset 0px 0px 10px red;
  padding: 10px 20px 10px 20px;
  color: white;
  font-family: Arial narrow;
  font-weight: 600;
  font-size: 20px;
}

a.button {
  display: block;
  padding: 10px 20px 10px 20px;
  background: black;
  border: 2px solid red;
  box-shadow: inset 0px 0px 5px #a20000;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 15px;
}
a.button a {
  color: red;
  text-decoration-line: none;
}

a.button a:hover {
  color: red;
  text-decoration-line: underline;
}

a.button:hover {
  background: #130000;
  border: 2px solid #a20000;
  transform: translate(0px, -2px);
  color: red;
  box-shadow: inset 0px 0px 5px red;
}

a.button::before {
  content: "> ";
  color: black;
}

a.button::after {
  content: " <";
  color: black;
}

a.button:hover::before,
a.button:hover::after {
  color: red;
}

a:-webkit-any-link {
  color: red;
  text-decoration: none;
}
 
div.line {
  height: 0px;
  border: 1px solid red;
  margin-bottom: 20px;
  margin-top: 20px;
}

.chapter-content {
  text-align: left; 
  line-height: 1.6;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}












  