@charset "UTF-8";
#whitespace-below-article {
  padding-bottom: 50vh;
}

header {
  margin-left: 2.3em;
  margin-right: 2.3em;
  text-align: center;
}
header h1 {
  margin-bottom: 0.1em;
}
header p {
  font-family: "Vermiglione", serif;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.2em;
  color: #88593a;
}

p {
  margin-top: 0.4em;
  margin-bottom: 0.9em;
}

figure {
  margin-bottom: 0.9em;
  margin-left: -4%;
  margin-right: -4%;
}
figure.image {
  display: flex;
  justify-content: center;
}

blockquote {
  position: relative;
  margin: 1.5em 0;
  padding-left: 2.2em;
  font-style: italic;
  color: #5a4636;
}
blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.1em;
  font-size: 3.5em;
  line-height: 1;
  color: #e0d3c2;
  font-family: "Vermiglione", serif, serif;
  pointer-events: none;
  opacity: 0.7;
}

img {
  width: 100%;
  border: 1.3px solid gray;
  border-radius: 5px;
  box-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.0823529412);
}

.footnotes {
  margin-top: 2em;
  font-size: 0.85rem;
}
.footnotes p {
  font-size: 0.85rem;
}

h2 {
  padding-top: 0.9em;
  margin-bottom: 0;
}
h2 a::before {
  content: "¶";
  display: inline-block;
  font-size: 1.6rem;
  color: rgba(69, 69, 69, 0.8392156863);
  opacity: 0;
  transition: opacity 0.3s ease;
  --anchor-link-offset: 1rem;
  margin-left: calc(-1 * var(--anchor-link-offset));
  width: var(--anchor-link-offset);
}
@media (min-width: 400px) {
  h2 a::before {
    font-size: 1.8rem;
    --anchor-link-offset: 1.3rem;
  }
}
@media (min-width: 900px) {
  h2 a::before {
    --anchor-link-offset: 1.6rem;
  }
}
h2 a:hover::before {
  opacity: 1;
}
h2:hover a::before {
  opacity: 1;
}
h2:target a::before {
  opacity: 1;
  color: #88593a;
}

.header-content-separator {
  background-color: #88593a;
  width: 100%;
  height: 2px;
  border-radius: 200%;
  border: none;
  margin-top: 2.2em;
  margin-bottom: 2.2em;
}

.return-back {
  display: flex;
  justify-self: center;
  margin-top: 2em;
  padding: 0.2em;
  font-family: "Vermiglione", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #88593a;
}
.return-back svg {
  position: absolute;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  fill: #88593a;
  opacity: 0;
  transition: opacity 100ms ease-in-out, transform 200ms ease-in-out, color 200ms ease-in-out;
}
.return-back {
  transition: transform 200ms ease-in-out;
}
.return-back:hover {
  transform: translateX(0.8em);
}
.return-back:hover svg {
  opacity: 1;
  transform: translateX(-1.2em);
  fill: #563c29;
}

.image-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  transition: background 0.2s;
}

/*# sourceMappingURL=page.css.map */