body {
  background-color: #262626;
  color: #b3a793;
  font-family: "Avenir Next", Avenir, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
h1 {
  font-size: 1.8em;
  color: #b3a793;
  margin-bottom: 1.2rem;
}

blockquote {
  margin: 0 auto 0 auto;
  max-width: 800px;
  font-size: 1rem;
  color: #aaa;
  background-color: transparent;
  font-style: italic;
  opacity: 0.8;
  font-family: 'EB Garamond', serif;
  line-height: 1.7;
  width: 841px;
  margin-bottom: 0;
  text-align: center;
}

#back-link {
  position: absolute;
  left: 125px;
  top: 30px;
}

blockquote footer {
  display: block;
  margin-top: 0.5rem;
  text-align: right;
  font-style: normal;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #333;
  padding: 1rem 0;
}

.essay-header {
  text-align: center;
  font-size: 1.8em;
}

.essay-logo {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.essay-logo img {
  height: 30px;
}

strong {
  color: #e74c3c;
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
}


h2.section-title {
  color: #b3a793;
  margin-top: 2rem;
  font-size: 1.2em;
  border-bottom: 1px solid #444;
  padding-bottom: 0.3em;
}
section {
  margin-bottom: 2.5rem;
}
ul {
  padding-left: 1.2rem;
}
li {
  margin-bottom: 0.5rem;
}
a {
  color: #d4c6b0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
a:hover {
  border-bottom: 1px solid #d4c6b0;
}
summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
details summary::before {
  content: '';
  display: inline-block;
  height: 15px;
  width: 15px;
  margin-right: 0.5rem;
  vertical-align: middle;
  background-color: #c2c0b9;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 20 20'><path d='m17.5 4.75-7.5 7.5-7.5-7.5L1 6.25l9 9 9-9z'/></svg>");
  mask-repeat: no-repeat;
  mask-position: center;
  background-size: contain;
  transform: rotate(-90deg);
}
details[open] summary::before {
  transform: rotate(0deg);
}
details > summary::-webkit-details-marker {
  display: none;
}
.nested {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }
  main {
    padding: 1.2rem;
  }
}
