@charset "UTF-8";
/*@use '../../_shared/assets/font_noto-color-emoji';*/
@import url("cactus-chat.css");
@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;
}

:root, :host {
  --seia-color-bg: transparent !important;
}

.cactus-editor-textarea::-moz-placeholder, .cactus-editor-name > span > input::-moz-placeholder {
  text-transform: lowercase;
}

.cactus-editor-textarea::placeholder,
.cactus-editor-name > span > input::placeholder,
.cactus-container button {
  text-transform: lowercase;
}

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-stretch: normal;
  font-size: 1em;
  max-width: 1000px;
  margin: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.layout {
  margin-top: 5%;
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
}

main {
  margin: auto;
  display: flex;
  flex-direction: column;
  row-gap: 3vh;
}
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;
  border-bottom: 1px solid;
  padding-top: 2em;
  padding-bottom: 2em;
  font-size: large;
}

h2 {
  border-bottom: 1px solid;
  padding-bottom: 0.25em;
  margin-top: 0;
}

article {
  border: 1px solid gray;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 1.5em;
  line-height: 1.5;
  font-size: 1.2em;
  font-weight: 500;
  -webkit-hyphens: manual;
          hyphens: manual;
}
article hgroup {
  border-bottom: 1px dashed;
}
article hgroup h2 {
  padding-bottom: 0;
  margin-bottom: 0.5em;
  border-bottom: none;
}
article hgroup .p-summary {
  text-indent: 0;
  font-style: italic;
  padding: 1em;
  margin: 1em 0;
  background-color: rgba(128, 128, 128, 0.1);
}

.h-entry time {
  margin-right: auto;
  text-align: right;
  display: block;
}
.h-entry p {
  text-indent: 2em;
}
.h-entry blockquote {
  border: 1px dashed;
  padding: 1em;
  margin-left: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
  width: -moz-fit-content;
  width: fit-content;
}
.h-entry img {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
  margin: auto;
  max-width: 100%;
}

section {
  margin-bottom: 1em;
}
section h3 {
  border-bottom: 1px dashed;
  margin-top: 0;
  padding-bottom: 0.25em;
}

.tags {
  line-height: 3em;
  padding: 0;
  margin-top: 2em;
  margin-bottom: 0;
  border-top: 1px dashed;
  text-align: left;
}
.tags dl {
  display: inline-flex;
  flex-wrap: wrap;
}
.tags dt {
  font-weight: bolder;
  font-size: larger;
}
.tags dd {
  margin-left: 1em;
}
.tags dd a {
  padding: 0.5em;
  border-radius: 50px;
  border: 1px solid;
  text-decoration: none;
  font-weight: 400;
}

.feed-links {
  text-align: center;
  margin: auto;
  font-size: larger;
}
.feed-links ul {
  display: flex;
  margin-left: 0;
  padding-left: 0;
}
.feed-links li {
  display: block;
}
.feed-links li:not(:last-of-type)::after {
  content: "•";
  margin: 0 1em;
}

#comments, #webmentions {
  border: 1px solid gray;
  padding: 2em;
  padding-top: 1.5em;
}

summary {
  margin-left: 1em;
}

.layout + footer {
  width: 70%;
  margin-left: 0;
}

@media all and (max-width: 800px) {
  article {
    padding: 1em;
    border: none;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
  }
}
@media all and (max-width: 768px) {
  body {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 0;
    padding-right: 0;
  }
  .layout {
    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: "/";
  }
  main {
    margin-left: auto;
    margin-right: auto;
    max-width: 100vw;
    margin-top: 5%;
  }
  #comments, #webmentions {
    border-left: none;
    border-right: none;
  }
  footer {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: none;
  }
}
main {
  width: -moz-fit-content;
  width: fit-content;
}/*# sourceMappingURL=blog_article_entry.css.map */