@charset "UTF-8";
/* generic subpage */
@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;
  }
}
html {
  scrollbar-color: rgb(184, 140, 184) transparent;
  scrollbar-width: thin;
}

body {
  color: white;
  background-color: rgb(46, 41, 48);
  transition: background-color 0.25s ease-out;
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: auto;
  margin-top: 8vh;
  width: 80%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

header {
  position: fixed;
  width: -moz-min-content;
  width: min-content;
}

main {
  padding: 2em;
  padding-top: 1em;
  height: -moz-fit-content;
  height: fit-content;
}

main,
main + footer {
  grid-column: 2;
  max-width: 500px;
}

body {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1em;
}

header time {
  font-weight: 600;
}
header nav ul {
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: purple;
  padding: 1em;
  padding-top: 1.5em;
}
header nav li {
  display: block;
  margin-bottom: 1em;
}
header nav li::before {
  content: "୨୧";
  margin-right: 0.5em;
}
header nav a {
  text-decoration: none;
  padding: 0px 5px;
  margin-left: -5px;
}

main {
  border: 1px solid;
  box-shadow: 5px 5px 10px rgba(128, 0, 128, 0.1);
  font-size: 1.1em;
  font-stretch: 98%;
  letter-spacing: 0.03em;
  line-height: 1.5em;
}

article ul ul {
  border-top: 1px solid;
  margin-top: 1em;
  padding-top: 1em;
}
article li:not(li:last-of-type) {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid;
}

h1 {
  text-align: left;
  font-size: 2em;
  letter-spacing: 1px;
}

h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid hotpink;
  font-size: 1.8em;
  text-align: right;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

h3,
h4 {
  padding: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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;
}

a {
  color: plum;
  background-color: transparent;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  background-color: rgb(141, 76, 97);
  text-decoration: none;
  color: white !important;
}

button {
  padding: 0.5em;
  font-size: 1.2em;
  border: 1px solid purple;
  background-color: transparent;
  cursor: pointer;
}
button:hover {
  background-color: rgba(128, 0, 128, 0.25);
}
button:active {
  background-color: burlywood;
}

::-moz-selection {
  background-color: rgb(255, 231, 179);
  color: black !important;
}

::selection {
  background-color: rgb(255, 231, 179);
  color: black !important;
}

::-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;
}

@media all and (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    width: 90vw;
    margin-top: 5%;
  }
  header {
    margin: auto;
    padding-left: 5%;
    padding-right: 5%;
    width: 85%;
    position: static;
  }
  header nav ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    border: none;
  }
  header nav li {
    margin-right: 1em;
    margin-bottom: 0.5em;
    display: inline;
    flex-direction: row;
  }
  main {
    margin: auto;
    padding: 0 1em 1.5em;
    max-width: none;
  }
  main + footer {
    width: 90%;
  }
}/*# sourceMappingURL=generic.css.map */