html {
  font-family: "Georgia", "Merriweather", "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.6;
}

body {
  color: #bbb;
  background-color: #151515;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

::selection {
  background: #a41818;
  color: #fff;
}

a {
  color: #5865F2;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a strong {
  color: inherit;
}
a:hover, a:focus {
  color: #a41818;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-weight: bold;
  line-height: 1.25;
  color: #e0e0e0;
  text-rendering: optimizeLegibility;
  font-family: sans-serif;
}

h1 {
  font-size: 2rem;
}

h2 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

h4, h5, h6 {
  margin-top: 1rem;
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

strong {
  color: #fff;
}

ul, ol, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

hr {
  border: 0;
  border-top: 1px solid #333;
  margin: 2rem auto;
  width: 50%;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto 1rem;
  border-radius: 5px;
  border: 1px solid #333;
}

blockquote {
  padding: .5rem 1rem;
  margin: 1.5rem 0;
  color: #888;
  border-left: .25rem solid #a41818;
  background: rgba(255, 255, 255, 0.05);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 36rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
}

.chapter-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.chapter-list li {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chapter-list a {
  text-decoration: none;
  color: #ccc;
  display: block;
  width: 100%;
}

.chapter-list a:hover {
  color: #a41818;
  padding-left: 8px;
  transition: all 0.2s ease;
}

input[type="text"]#chapterSearch {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  background-color: #151515;
  border: 1px solid #333;
  color: #eee;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
input[type="text"]#chapterSearch:focus {
  outline: none;
  border-color: #a41818;
}
input[type="text"]#chapterSearch::placeholder {
  color: #555;
}
