@charset "UTF-8";
@font-face {
  font-family: "Instrument Sans";
  font-display: swap;
  src: url("/_assets/fonts/Instrument_Sans/InstrumentSans-VariableFont_wdth-wght.woff2") format("woff2"), url("/_assets/fonts/Instrument_Sans/InstrumentSans.woff") format("woff"), url("/_assets/fonts/Instrument_Sans/InstrumentSans-VariableFont_wdth-wght.ttf") format("truetype");
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --links-hover-bg: white;
  --light-font: rgb(63, 48, 48);
  --light-bg: rgb(232, 221, 235);
  --light-bg-article: ghostwhite;
  --light-links: rgb(88, 24, 56);
  --light-links-hover: rgb(140, 42, 221);
  --dark-font: white;
  --dark-bg: black;
  --dark-links: rgb(255, 166, 181);
  --dark-links-hover: rgb(255, 234, 176);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(184, 140, 184) transparent;
  scrollbar-width: thin;
}

html {
  text-rendering: optimizeLegibility;
}

body {
  color: white;
  background-color: rgb(46, 41, 48);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 450;
}

a {
  color: plum;
}

dl {
  margin-right: 1em;
  display: grid;
  row-gap: 1em;
  margin-left: 2em;
}

dt {
  font-weight: bolder;
  grid-column: 1;
}

dd:not(:last-child) {
  grid-column: 2/5;
  margin-left: 0;
  padding-left: 0.5em;
}
dd ul {
  padding-left: 0;
}
dd p:first-child {
  margin-top: 0;
}
dd dl {
  grid-template-columns: 2fr 5fr;
}
dd dl dd {
  grid-column: 2 !important;
  margin-left: 0 !important;
  padding-left: 0.5em !important;
}

dt:not(:last-child, :last-of-type), dd:not(:last-child, :last-of-type) {
  border-bottom: 1px solid rgba(128, 128, 128, 0.575);
}
dt:last-child, dd:last-child {
  grid-column: span 4;
}

ul dl {
  grid-auto-flow: column;
  grid-template-columns: 2fr 5fr;
}
ul dt, ul dd {
  border-bottom: 1px solid rgba(128, 128, 128, 0.575);
}
ul dd {
  margin-left: 0;
}

footer {
  margin: 3em auto;
  text-align: center;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
  row-gap: 1em;
}
footer ul:last-of-type {
  -moz-column-gap: 1em;
       column-gap: 1em;
}
footer li:not(ul:last-of-type li)::before {
  content: "⬩";
  font-size: 1.25em;
  margin: 0 1em;
}
footer li:not(ul:last-of-type li):first-of-type::before {
  content: none;
}
footer a img {
  text-decoration: none;
}

::-moz-selection {
  background-color: rgb(248, 208, 170);
  color: black;
}

::selection {
  background-color: rgb(248, 208, 170);
  color: black;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(164, 118, 170);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: plum;
}

body {
  font-size: 1.1em;
  font-stretch: 95%;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  max-width: 1600px;
  margin: auto;
}

#layout {
  margin: 5vh 3vw;
  display: flex;
  flex-direction: row-reverse;
}

header {
  margin-left: 3em;
  letter-spacing: 0.05em;
  align-self: flex-start;
  position: sticky;
  top: 2em;
  min-width: 20%;
}
header h1 {
  font-size: 1.5em;
}
header p {
  padding-left: 0;
}
header time {
  font-weight: 600;
  display: block;
}
header nav {
  margin: auto;
  border-top: 1px solid;
  border-bottom: 1px solid;
  letter-spacing: 0.1em;
  padding: 0.5em;
  font-size: 1em;
  max-height: 40vh;
  overflow-y: auto;
}
header nav ul {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  padding: 0.7em;
}
header nav li {
  display: flex;
  margin-bottom: 1em;
}
header nav li::before {
  content: "✧";
  margin-right: 0.5em;
}
header nav a {
  text-decoration: none;
  padding: 0px 5px 3px 5px;
}

main nav {
  padding: 1.5em;
}
main p:not(li p:first-child) {
  margin-left: 2em;
  padding-right: 2em;
}
main ul {
  margin-left: 1em;
  padding-right: 2em;
}
main ul ul {
  margin-left: 0;
}
main li p:nth-of-type(2) {
  margin-left: 1em;
}

#parent-category-name {
  font-size: larger;
  font-weight: 500;
  margin: 0;
}

section, #legend, main nav {
  padding-bottom: 1.5em;
  border: 1px solid rgb(119, 61, 119);
}

article {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
  row-gap: 3vh;
}
article nav {
  grid-column: 2;
  height: -moz-fit-content;
  height: fit-content;
}

#legend {
  padding-top: 0.5em;
  grid-column: 2;
}
#legend summary {
  margin: 1em 2em 0;
  font-size: 1em;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#legend h2 {
  margin-top: 1em;
}

section {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  grid-column: 2;
  font-size: 1.1em;
}
section a {
  -webkit-text-decoration: 1.5px wavy underline;
          text-decoration: 1.5px wavy underline;
}
section p, section ul, section dl {
  line-height: 1.7em;
}
section p:not(ul p), section dl:not(ul dl) {
  margin-left: 3em;
}
section p:not(ul p) dl, section dl:not(ul dl) dl {
  margin-left: 0;
}
section:first-of-type {
  font-size: 1em;
  grid-column: 1;
  grid-row: 2;
  height: -moz-fit-content;
  height: fit-content;
  -moz-column-break-after: always;
       break-after: always;
  position: fixed;
  top: 5%;
  padding-bottom: 0;
}

.table-of-contents {
  overflow-y: auto;
  max-height: 75vh;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1em 0 1em 1em;
}
.table-of-contents li {
  margin-bottom: 0.5em;
}
.table-of-contents ul {
  margin-top: 0.5em;
}
.table-of-contents a {
  text-decoration: none;
}

h2 {
  background-color: rgba(110, 60, 139, 0.233);
  padding: 1em;
  margin: 0;
  text-align: right;
  display: flex;
  justify-content: space-between;
}

h3 {
  padding: 1em 1.5em;
  margin-top: 0;
  margin-bottom: 1.5em;
  background-color: rgba(216, 112, 147, 0.2);
}
h3:not(h2 + h3) {
  margin-top: 2em;
}

h4, h5 {
  margin-left: 1.5em;
  margin-right: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid;
  font-size: larger;
}

.heading-permalink {
  margin-right: 1em;
}

hr {
  border: 1px dashed pink;
  margin-top: 2em;
  margin-bottom: 2em;
}

a {
  background-color: transparent;
  font-weight: 600;
}
a:hover {
  background-color: var(--links-hover-bg);
  color: black;
}

button {
  font: inherit;
  background-color: inherit;
  color: inherit;
  border: 1px solid;
  cursor: pointer;
}
button:hover {
  background-color: thistle;
  color: black;
}

#themeSwitch {
  padding: 0.5em;
  margin-bottom: 1em;
}

footer {
  margin: 3em 3em 3em auto;
  text-align: right;
}
footer ul {
  margin-right: 0;
  padding-left: 0;
}

@media all and (max-width: 1200px) {
  #layout {
    margin-top: 0;
    flex-direction: column;
  }
  header {
    position: relative;
    max-width: 60vw;
    margin-left: auto;
    margin-bottom: 3vh;
    text-align: right;
  }
  header nav li {
    display: inline;
    margin-right: 0.5em;
  }
  header nav li:last-child::after {
    content: "✧";
    margin-left: 0.5em;
  }
  main {
    margin-top: 5vh;
  }
  footer {
    text-align: center;
  }
  footer ul {
    margin: auto;
  }
}
@media all and (max-width: 900px) {
  body {
    width: -moz-fit-content;
    width: fit-content;
  }
  header {
    max-width: 90vw;
    margin: auto;
  }
  header nav {
    text-align: left;
  }
  #layout {
    margin: 0;
  }
  article {
    display: block;
  }
  article ul {
    padding-right: 2vw;
  }
  article dd:last-child {
    margin-left: 1em;
  }
  section {
    border-right: none;
    border-left: none;
    margin-bottom: 3vh;
    font-size: 1em;
  }
  section:first-of-type {
    position: relative;
  }
  section li p:not(li:first-child) {
    margin-left: 0;
  }
  #legend, main nav {
    margin: 5vh 5vw;
  }
  footer {
    margin: auto;
    text-align: center;
  }
}
@media all and (max-width: 500px) {
  body {
    max-width: 100vw;
  }
  main {
    width: -moz-fit-content;
    width: fit-content;
  }
  main dl {
    margin-left: 2em !important;
  }
  main dl dl {
    display: initial;
  }
}/*# sourceMappingURL=resources_subpage.css.map */