@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;
  max-width: 1100px;
  margin: auto;
  margin-top: 5%;
  padding-bottom: 3vh;
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
}

header {
  position: sticky;
  top: 5%;
  align-self: flex-start;
}
header #blog li:nth-child(2) > a {
  -webkit-text-decoration: wavy underline;
          text-decoration: wavy underline;
  text-underline-offset: 0.25em;
}

.main-column {
  max-width: 800px;
}

.feed-links {
  margin: auto;
  margin-bottom: 2em;
  padding: 0.5em;
  width: 95%;
  text-align: center;
}

main {
  margin: 0 auto 3em;
}
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;
}

.tag-title, .exception {
  text-align: center;
}

article {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2em;
}
article h2 {
  letter-spacing: 0.05em;
}

.notes-format {
  display: flex;
  flex-direction: row;
  max-width: 100vw;
  margin-bottom: 3em;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.notes-format header {
  border-bottom: none;
}
.notes-format header .id {
  border-top: 1px solid;
  padding-top: 1em;
  margin-bottom: 0;
}
.notes-format > .u-photo {
  border-radius: 50%;
  margin-right: 1em;
  margin-bottom: 1em;
  border: 1px solid;
}
.notes-format .h-entry {
  flex-direction: column;
  padding: 1em 2em;
  border: 1px solid rgb(56, 49, 56);
  max-width: 95vw;
}
.notes-format .h-entry .e-content {
  margin-top: 0;
  font-size: larger;
  font-stretch: 95%;
  line-height: 1.5em;
}
.notes-format .h-entry img {
  max-width: 100%;
}
.notes-format .h-entry footer {
  border-top: 1px dashed;
  margin: 0;
  padding: 0.5em 0;
  display: block;
  width: 100%;
  text-align: left;
  font-size: medium;
}
.notes-format .tags {
  display: inline-flex;
  flex-wrap: wrap;
  line-height: 2.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin: 0;
}
.notes-format .tags dt {
  font-weight: bolder;
  font-size: larger;
}
.notes-format .tags dd {
  margin-left: 1em;
}
.notes-format .tags dd a {
  padding: 0.5em;
  border-radius: 50px;
  border: 1px solid;
  text-decoration: none;
  font-weight: 400;
}
.notes-format .post-links {
  padding-top: 1.5em;
  margin-top: 0;
  text-align: right;
  font-size: larger;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.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: 1100px) {
  body {
    max-width: 90vw;
  }
  header {
    max-width: none;
  }
  .main-column {
    max-width: 700px;
  }
  .notes-format {
    flex-direction: column;
  }
  .notes-format header {
    margin-left: 3vw;
    margin-bottom: 3vh;
    display: flex;
    align-items: center;
    position: static;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
  .notes-format header .u-photo {
    margin-bottom: 0;
  }
  .notes-format header hgroup p {
    margin-bottom: 0;
  }
  .notes-format header .id {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}
@media all and (max-width: 768px) {
  body {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100vw;
    margin: auto auto;
    padding-top: 3vh;
    flex-direction: column;
  }
  header nav ul ul {
    padding-right: 0;
    display: inline;
    padding-left: 0;
  }
  header nav li {
    margin-right: 0.5em;
    display: inline-block;
    height: -moz-fit-content;
    height: fit-content;
  }
  header nav li:last-child::after {
    content: "✧";
    margin-left: 0.5em;
  }
  header nav li li:last-child::after {
    content: none;
  }
  #headernav ul ul li:not(:first-child)::before {
    content: "/";
  }
  header {
    position: static;
    max-width: 95vw;
    margin: auto;
  }
  main {
    margin-top: 5%;
    width: 100%;
  }
  article {
    flex-direction: column;
  }
  .notes-format .h-entry {
    border-left: none;
    border-right: none;
    padding: 1em 1em;
    max-width: 100vw;
  }
  .notes-format .h-entry .e-content {
    font-size: 1.1em;
  }
  .notes-format + p {
    width: -moz-fit-content;
    width: fit-content;
  }
  footer {
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    border: none;
  }
}
@media all and (max-width: 400px) {
  main {
    width: -moz-fit-content;
    width: fit-content;
  }
  article {
    padding-top: 1em;
  }
}/*# sourceMappingURL=blog_notes_index.css.map */