@charset "UTF-8";
@font-face {
  font-family: "Inconsolata";
  font-display: swap;
  src: url("/_assets/fonts/Inconsolata/Inconsolata-VariableFont_wdth-wght.woff2") format("woff2"), url("/_assets/fonts/Inconsolata/Inconsolata.woff") format("woff"), url("/_assets/fonts/Inconsolata/Inconsolata-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;
  text-rendering: optimizeLegibility;
}

body {
  color: white;
  font-weight: 500;
  font-family: "Inconsolata", monospace;
  scrollbar-color: pink transparent;
  scrollbar-width: thin;
  opacity: 0;
  animation: fadeIn 0.5s;
  animation-fill-mode: forwards;
  background-color: rgb(45, 42, 48);
}

a {
  color: plum;
}

header {
  letter-spacing: 0.05em;
  border-bottom: 1px solid;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
header hgroup {
  display: flex;
  flex-direction: column;
}
header time {
  font-weight: 600;
  display: block;
}
header nav {
  margin: auto;
  border-top: 1px solid;
  letter-spacing: 0.1em;
  padding: 0.25em;
}
header nav ul {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  padding: 0.7em;
  font-size: 1em;
}
header nav ul ul {
  padding-top: 0;
  padding-bottom: 0.25em;
}
header nav ul ul li::before {
  content: "⟶";
}
header nav li {
  display: flex;
  margin-bottom: 0.25em;
}
header nav li::before {
  content: "✧";
  margin-right: 0.5em;
}
header nav a {
  text-decoration: none;
  padding: 0px 5px 3px 5px;
  height: -moz-fit-content;
  height: fit-content;
}

#themeSwitch {
  display: block;
  margin-right: auto;
  margin-bottom: 1em;
  padding: 0.5em;
}

h1 {
  font-size: 2em;
}

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

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

a {
  background-color: transparent;
  transition: all 0.2s ease-out;
  font-weight: 600;
}
a:hover {
  background-color: var(--links-hover-bg);
}

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

::-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;
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.layout {
  margin-top: 5%;
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.layout > header {
  max-width: 12em;
  margin-left: 1em;
  position: sticky;
  top: 5%;
  align-self: flex-start;
}
.layout > header #blog li:first-child > a {
  -webkit-text-decoration: wavy underline;
          text-decoration: wavy underline;
  text-underline-offset: 0.25em;
}

main {
  margin: 0 auto 3em;
  width: 70%;
  font-size: larger;
}
main::before {
  content: "⋆｡ ﾟ☁︎｡ ⋆｡ ﾟ☾ ﾟ｡ ⋆";
  display: block;
  text-align: center;
  margin-bottom: 1.5em;
  letter-spacing: 0.4em;
  font-size: x-large;
}
main::after {
  content: "˗ˏˋ ꒰ ┆┆ ₊˚ʚ ᗢ₊˚✧ ﾟ.┆┆꒱ ˎˊ˗";
  display: block;
  text-align: center;
  margin-top: 1.5em;
  font-size: x-large;
}

article {
  margin: 0 auto 2em;
}
article h2 {
  letter-spacing: 0.05em;
}

.articles-list {
  border: 1px solid;
  padding: 1.5em 2em 2em;
  list-style-position: inside;
  list-style-type: decimal-leading-zero;
  margin-bottom: 2em;
}
.articles-list h3 {
  margin-left: 1em;
  line-height: 2em;
}
.articles-list h3 a {
  -webkit-text-decoration: 1px underline;
          text-decoration: 1px underline;
  text-underline-offset: 0.5em;
}
.articles-list h3 + blockquote {
  margin-bottom: 2em;
}
.articles-list > li {
  margin-bottom: 1.5em;
  padding-bottom: 2em;
  border-bottom: 1px dashed;
}
.articles-list > li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 1em;
  border-bottom: none;
}
.articles-list > li::marker {
  font-size: xx-large;
  font-style: italic;
}
.articles-list dl {
  display: grid;
  grid-template-columns: 1fr 3fr;
  row-gap: 1em;
  margin-left: 2em;
  font-size: smaller;
  line-height: 1em;
}
.articles-list dl dt {
  grid-column: 1;
}
.articles-list dl dd {
  grid-column: 2;
}

.tags {
  display: inline-flex;
  list-style: none;
  padding-left: 0;
}
.tags li {
  margin-left: 0;
  margin-right: 1em;
}
.tags a {
  -webkit-text-decoration: 1px dotted underline;
          text-decoration: 1px dotted underline;
}

.page-nav {
  padding: 1em;
  margin-bottom: 2em;
  line-height: 2em;
}
.page-nav ul {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
}
.page-nav li {
  display: block;
}
.page-nav li span {
  font-size: x-large;
}
.page-nav .previous a, .page-nav .next a {
  display: inline-block;
  border-radius: 50px;
  height: 40px;
}
.page-nav .position {
  text-align: center;
  margin: 0 auto;
}
.page-nav .previous {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  width: 25%;
}
.page-nav .next {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  width: 25%;
}

@media all and (max-width: 900px) {
  .articles-list dl {
    display: block;
  }
  .articles-list dt {
    margin-bottom: 1em;
  }
  .articles-list dt:not(dl:first-child) {
    margin-top: 1em;
  }
}
@media all and (max-width: 768px) {
  body {
    width: -moz-fit-content;
    width: fit-content;
  }
  .layout {
    flex-direction: column;
  }
  .layout header nav ul ul {
    padding-right: 0;
    display: inline;
    padding-left: 0;
  }
  .layout header nav li {
    margin-right: 0.5em;
    display: inline-block;
    height: -moz-fit-content;
    height: fit-content;
  }
  .layout header nav li:last-child::after {
    content: "✧";
    margin-left: 0.5em;
  }
  .layout header nav li li:last-child::after {
    content: none;
  }
  .layout #headernav ul ul li:not(:first-child)::before {
    content: "/";
  }
  .layout > header {
    position: static;
    max-width: none;
  }
  .articles-list {
    padding-left: 1em;
    padding-right: 1em;
  }
  .articles-list h3, .articles-list blockquote, .articles-list dl {
    margin-left: 1em;
  }
  main {
    margin-top: 5%;
    width: 100%;
  }
  footer {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: none;
  }
}
@media all and (max-width: 500px) {
  main {
    width: -moz-fit-content;
    width: fit-content;
  }
}/*# sourceMappingURL=blog_articles_index.css.map */