@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;
  }
}
* {
  scrollbar-width: thin;
}

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

body {
  color: white;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  background-color: rgb(63, 49, 63);
  opacity: 0;
  animation: fadeIn 0.5s;
  animation-fill-mode: forwards;
}

a {
  color: plum;
  background-color: transparent;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  background-color: rgb(163, 90, 114);
  text-decoration: none;
  color: white;
}

.layout {
  display: flex;
  max-width: -moz-min-content;
  max-width: min-content;
  margin: auto;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

h1, h2, h3 {
  font-weight: 500;
}

header {
  margin: 50px auto auto auto;
  padding-left: 50px;
  width: 15vw;
  position: sticky;
  top: 5%;
}
header h1 {
  text-align: left;
  font-size: 2em;
  letter-spacing: 1px;
  line-height: normal;
}
header .subtitle {
  font-size: x-large;
}
header .site-update time {
  font-weight: 600;
  display: block;
}
header nav ul {
  padding: 1em;
}
header nav ul li {
  padding-bottom: 1em;
}
header nav ul li ul {
  border: none;
  padding-bottom: 0;
}
header nav ul li ul li {
  padding-bottom: 0;
}
header nav ul li::before {
  content: "୨୧";
  margin-right: 0.5em;
}
header nav ul:first-child {
  border-bottom: 1px solid rgb(207, 145, 207);
  border-top: 1px solid rgb(207, 145, 207);
  padding: 1em;
}
header nav ul:nth-child(3) {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 1em;
}
header nav ul:nth-child(3) li::before {
  content: "⟶";
}
header nav .changelog {
  font-weight: 600;
}

nav li {
  display: block;
  padding-bottom: 1em;
}

main {
  width: clamp(500px, 35vw, 700px);
  margin: auto;
  margin-top: 3em;
}

article > section {
  border: 1px solid;
  padding: 2em;
  margin-bottom: 3em;
}

section ul {
  list-style-position: inside;
  padding: 0;
}
section ul ul {
  padding-top: 1em;
}
section li {
  border-bottom: 1px solid;
  padding: 1em;
}
section li li {
  border: none;
  padding-bottom: 0;
}
section li:first-child {
  padding-top: 0;
}

h2 {
  padding-bottom: 20px;
  padding-top: 0px;
  margin-top: 0px;
  border-bottom: 1px solid hotpink;
  font-size: 1.75em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h3 {
  margin-top: 0px;
  padding: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5em;
}
h4:before {
  content: "☆";
  margin-right: 0.5em;
}
h4:after {
  content: "☆";
  margin-left: 0.5em;
}

.archive-nav ul {
  margin-left: 1em;
  display: initial;
  border: none;
  font-weight: 600;
}
.archive-nav li {
  margin-right: 0;
  font-weight: 600;
  border: none;
  padding: 0;
  display: initial;
}
.archive-nav li::before {
  content: "⟶";
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.archive-nav li::after {
  content: "•";
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.archive-nav li:last-child::after {
  content: none;
}
.archive-nav li li::before {
  content: none;
}

hr {
  display: block;
  margin: 1em auto;
  border: 1px dashed plum;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: 1px solid purple;
  font-size: 1em;
  padding: 0.5em;
}
button:hover {
  background-color: rgba(255, 192, 239, 0.5);
}

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

main + footer {
  max-width: 90%;
}

::-moz-selection {
  background-color: rgb(255, 255, 191);
  color: black;
}

::selection {
  background-color: rgb(255, 255, 191);
  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;
}

@media all and (max-width: 1100px) {
  .layout {
    max-width: 100vw;
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  body {
    font-size: 1.1em;
  }
  .layout {
    flex-direction: column;
    max-width: 100vw;
  }
  header {
    margin: 5% auto 25px auto;
    padding-left: 5%;
    padding-right: 5%;
    width: 85%;
    position: static;
  }
  header nav ul {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
  }
  header nav ul li {
    margin-right: 1em;
    display: inline;
    flex-direction: row;
    margin-bottom: 0;
  }
  header nav ul:nth-child(2) li {
    margin-right: 0;
    padding-right: 0;
  }
  header nav ul:nth-child(2) li::before {
    content: none;
  }
  header nav ul:nth-child(3) {
    margin-left: 0;
    padding-left: 0;
  }
  header nav li {
    padding-bottom: 0;
  }
  header nav li ul {
    display: inline;
  }
  header nav li ul::before {
    content: "⟶";
    margin-right: 1em;
    margin-left: 1em;
  }
  main {
    width: 95vw;
  }
  .archive-nav ul {
    display: block;
  }
  .archive-nav ul > li {
    display: flex;
  }
  .archive-nav ul > li li::before {
    content: "•";
  }
  .archive-nav ul > li::after {
    content: none;
  }
  article > h2 {
    text-align: center;
    margin-top: 1em;
  }
  footer {
    font-size: smaller;
  }
}/*# sourceMappingURL=changelog.css.map */