@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
* {
  box-sizing: border-box;
}

html {
  background: #f3f3f3;
}

body {
  background: white;
  font-family: "Libre Baskerville", serif;
  max-width: 920px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.6em;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
  padding-top: 40px;
}
@media only screen and (max-width: 920px) {
  body {
    font-size: 18px;
    margin: 0;
    border: 0;
    box-shadow: 0;
  }
}

@media print {
  html {
    background: none;
  }

  body {
    border: 0;
    box-shadow: 0 0;
    padding-top: 0;
  }
}
article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 40px 0;
}
article > p:first-of-type {
  margin-top: 0;
}
article > p:last-of-type {
  margin-bottom: 0;
}

section {
  border-top: 1px solid black;
  margin-top: 0.2em;
}
section:first-of-type:before {
  content: " ";
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  height: 0;
  display: block;
  margin-top: -6px;
  padding-top: 6px;
}

h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.8em;
  line-height: 1em;
  padding-top: 0.4em;
}

h2 {
  display: inline;
  font-size: 1em;
  font-weight: 700;
  font-style: italic;
}

cite {
  font-style: italic;
}

a {
  opacity: 1;
  color: #2C5EF7;
  border-bottom: 1px solid;
  border-color: #2C5EF7;
  text-decoration: none;
}

header {
  cursor: pointer;
  font-size: 0.9em;
  line-height: 1em;
  text-align: center;
}
header a {
  display: block;
  border-bottom: 0;
  margin: 70px 0 40px 0;
}
header a img {
  width: 100%;
  max-width: 300px;
}
header a:hover {
  opacity: 0.75;
}
header a:active {
  opacity: 0.45;
}

footer {
  clear: both;
  border-top: 1px solid black;
  margin-top: 0.2em;
  text-align: center;
  line-height: 100%;
  max-width: 638px;
  margin: 0 auto;
  padding: 20px;
}

sub {
  display: block;
  font-size: 0.75em;
  opacity: 0.5;
  margin: 20px 0;
}

.page {
  max-width: 698px;
  margin: 0 auto;
  padding: 20px;
}
.page > p:first-of-type {
  font-size: 1.2em;
  line-height: 1.8em;
  margin: 40px 0 80px 0;
  text-align: center;
}

.related {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.related .related-image {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 31.3333333333%;
  padding-bottom: 31.3333333333%;
  margin-top: 20px;
  box-sizing: border-box;
  border: none;
}
.related .related-image img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  transition: 0.1s border;
}
.related .related-image:hover img {
  border: 10px solid rgba(0, 0, 0, 0.2);
}

.hidden {
  display: none;
}

.alert {
  background: #DCFB0F;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  border-radius: 0.25em;
  position: relative;
  padding: 0.25em 0.75em;
  color: #3D4042;
  margin: 0 0.5em 0.5em 0;
}
