main {
  padding: 0 1rem;
}
header {
  position: absolute;
}
article {
  padding: 1.5rem 0;
}
.note {
  max-width: 45rem;
  margin: 0 auto;
  --font-serif: 'Times New Roman', Times, serif;
}
.note-header {
  text-align: center;
}


.note h1,
.note h2 {
font-family: --font-serif !important;
font-size: 1.275rem;
letter-spacing: .02rem;
word-spacing: -.075rem;
text-indent: 0;
font-family: inherit;
}
.note h1 {
  text-align: center;
}

.note-info {
  margin: .5rem 0;
}
.date, .author {
  text-align: center;
  display: block;
  color: #b0b0b0;
  font-size: 1.05rem;
}
.note figcaption {
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: center;
  letter-spacing: .025rem;
  color: #ccc;
}
.note p {
  max-width: max-content;
}
.note ol li {
  padding-bottom: .75rem;
}
.note em {
  letter-spacing: -.0005rem;
}

.note-text p {
  font-family: var(--font-serif);
  font-size: 1.275rem;
  line-height: 1.575rem;
  letter-spacing: .02rem;
  word-spacing: -.075rem;
  text-indent: 3rem;
  margin-bottom: 1rem;
}

.footnotes p, 
.footnotes ol li{
  font-size: 1rem;
  font-family: var(--font-serif);
  list-style-type: decimal;
}
.related {
  display: flex;
  padding-top: 3rem;
  color: #ccc;
}
.related ul {
  padding-left: .25rem;
}
.note a {
  text-indent: 0;
  border-bottom: 1px solid #ccc;
}
.note-text p:first-of-type,
.note-text h2 + p {
  text-indent: 0 !important;
}

.note-text figure {
  max-width: 33vw;
  margin: auto;
  padding: 2rem 0;
}
.note-text figure img {
 width: 100%;
 height: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  grid-gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 3rem 0;
}
.gallery figure a {
  border: 0;
}
.gallery figure {
  margin: 0;
  padding: 0;
}


.page_nav {
  width: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  text-align: center;
  letter-spacing: 0.02rem;
}

.page_nav a {
  color: #ccc;
position: relative;
border-bottom: 1px dotted #ccc;
-webkit-transition: none false false;
-moz-transition: none false false false;
-o-transition: none false false false;
transition: none;
}

.page_nav a::after {
  content: "";
position: absolute;
bottom: -1px;
left: 0px;
right: 0px;
margin: 0px auto;
width: 0px;
border-bottom: 1px solid #ccc;

}

.page_nav a:hover {
 border-color: transparent;
   transition: 0.5s;
  color: #b0b0b0;

}

.page_nav a:hover:after {
 width:100%;
 -webkit-transition:width 350ms ease-out;
 -moz-transition:width 350ms ease-out false;
 -o-transition:width 350ms ease-out false;
 transition:width 350ms ease-out;
 -webkit-transition-delay:50ms;
 -moz-transition-delay:50ms;
 -o-transition-delay:50ms;
 transition-delay:50ms
}


@media screen and (min-width: 45rem) {
  .gallery { margin-left: -3rem; margin-right: -3rem;}
}

