:root {
  --bg-color: #fff;
  --font-color: #383838;
  --font-secondary-color: #767676;
  --link-color: #383838;
  --link-hover-color: #f69;
  --navbar-active-color: #161209;
  --post-link-color: #f69;
  --post-link-color-opacity: #f69;
  --post-link-hover-color: #ff276f;
  --post-hash-opacity: 0.3;
  --post-link-marker-color: #0d0d0d;
  --post-link-marker-hover-color: ffe5ee;
  --pagination-link-color: #2d96bd;
  --pagination-link-active-color: #000;
  --border-color: #e8e8e8;
  --code-font-color: #c7254e;
  --code-bg-color: #f8f5ec;
  --table-header-bg: #ffd1e0;
  --panel-bg: #fff;
  --panel-text-color: #363636;
  --tooltip-bg: #383838;
  --tooltip-color: #fff;
  --paginator-color: #bfbfbf;
  --caption-border-color: #d9d9d9;
  --caption-text-color: #969696;
  --scrollbar-color: #eee;
  --gutter-color: #d0d0d0;
  --toc-link-color: #999;
  --timeline-border-color: #e2e8f0;
  --timeline-badge-color: #2d1b2e;
  --timeline-badge-bg: #e1e1e1;
  --timeline-line-color: #161209;
  --timeline-circle-bg: #fff;
  --timeline-date-color: #a9a9b3;
  --error-border-color: #a7a7a7;
  --header-background: url("/images/background-header.gif");
  --header-filter: none;
  --header-min-height: 270px;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg-color: #2a2a2a;
    --font-color: #e0e0e0;
    --font-secondary-color: #a0a0a0;
    --link-color: #e0e0e0;
    --link-hover-color: #ff7daa;
    --navbar-active-color: #e0e0e0;
    --post-link-color: #ff7daa;
    --post-link-color-opacity: #ff7daa;
    --post-link-hover-color: #ff7daa;
    --post-link-marker-color: #e0e0e0;
    --post-link-marker-hover-color: 3d 2030;
    --post-hash-opacity: 1;
    --pagination-link-color: #5bb8d4;
    --pagination-link-active-color: #e0e0e0;
    --border-color: #333;
    --code-font-color: #e8758b;
    --code-bg-color: #2a2520;
    --table-header-bg: #3d2030;
    --panel-bg: #333;
    --panel-text-color: #d0d0d0;
    --tooltip-bg: #e0e0e0;
    --tooltip-color: #1a1a1a;
    --paginator-color: #666;
    --caption-border-color: #444;
    --caption-text-color: #888;
    --scrollbar-color: #444;
    --gutter-color: #555;
    --toc-link-color: #888;
    --timeline-border-color: #333;
    --timeline-badge-color: #e0e0e0;
    --timeline-badge-bg: #333;
    --timeline-line-color: #e0e0e0;
    --timeline-circle-bg: #2a2a2a;
    --timeline-date-color: #888;
    --error-border-color: #555;
    --header-background: none;
    --header-filter: none;
    --header-min-height: 80px;
  }
}
html[data-theme="dark"] {
  --bg-color: #2a2a2a;
  --font-color: #e0e0e0;
  --font-secondary-color: #a0a0a0;
  --link-color: #e0e0e0;
  --link-hover-color: #ff7daa;
  --navbar-active-color: #e0e0e0;
  --post-link-color: #ff7daa;
  --post-link-color-opacity: #ff7daa;
  --post-link-hover-color: #ff7daa;
  --post-link-marker-color: #e0e0e0;
  --post-link-marker-hover-color: 3d 2030;
  --post-hash-opacity: 1;
  --pagination-link-color: #5bb8d4;
  --pagination-link-active-color: #e0e0e0;
  --border-color: #333;
  --code-font-color: #e8758b;
  --code-bg-color: #2a2520;
  --table-header-bg: #3d2030;
  --panel-bg: #333;
  --panel-text-color: #d0d0d0;
  --tooltip-bg: #e0e0e0;
  --tooltip-color: #1a1a1a;
  --paginator-color: #666;
  --caption-border-color: #444;
  --caption-text-color: #888;
  --scrollbar-color: #444;
  --gutter-color: #555;
  --toc-link-color: #888;
  --timeline-border-color: #333;
  --timeline-badge-color: #e0e0e0;
  --timeline-badge-bg: #333;
  --timeline-line-color: #e0e0e0;
  --timeline-circle-bg: #2a2a2a;
  --timeline-date-color: #888;
  --error-border-color: #555;
  --header-background: none;
  --header-filter: none;
  --header-min-height: 80px;
}
@font-face {
  font-family: hamburger-heaven;
  src: url("../fonts/hamburger-heaven.ttf") format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: source-sans-pro;
  src: url("../fonts/SourceSansPro-Regular.ttf") format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: indie-flower;
  src: url("../fonts/IndieFlower-Regular.ttf") format('truetype');
  font-weight: normal;
}
* {
  box-sizing: border-box;
}
html {
  background-color: var(--bg-color);
}
body {
  margin: 0px;
  padding: 0px;
  color: var(--font-color);
  text-rendering: geometricPrecision;
}
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
::selection {
  color: var(--font-color);
  background: var(--link-hover-color);
}
p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.wrapper {
  max-width: 900px;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-min-height);
  background: no-repeat top/100% var(--header-background);
  filter: var(--header-filter);
  z-index: -1;
  pointer-events: none;
}
.wrapper .header {
  min-height: var(--header-min-height);
}
.navbar {
  height: 3rem;
  line-height: 4rem;
  width: 100%;
}
.navbar .container {
  width: auto;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.main {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
}
.footer {
  height: 4rem;
  width: 100%;
  text-align: center;
  padding-top: 2em;
}
.twitter-tweet {
  margin: 0 auto;
}
.fixed-column1 td:nth-child(1) {
  white-space: nowrap;
}
.fixed-column2 td:nth-child(2) {
  white-space: nowrap;
}
.header-title {
  font-family: hamburger-heaven;
  font-size: 6em;
  font-weight: normal;
  color: var(--font-color);
  text-decoration: none;
  transition: none;
}
.header-title:hover {
  color: var(--font-color);
  text-decoration: none;
  transition: none;
}
.navbar .menu a {
  padding: 0 8px;
}
.navbar .menu .active {
  font-weight: 900;
  color: var(--navbar-active-color);
}
.navbar-header a:hover,
.navbar .menu a:hover {
  background-color: transparent;
}
header label {
  margin-left: 15px;
  position: relative;
  transform: translateY(0.1em) translateX(0.5em);
}
.footer {
  color: var(--font-secondary-color);
  float: right;
  position: relative;
  margin-bottom: 4rem;
}
#theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 100;
  padding: 0;
}
#theme-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--font-secondary-color);
  transition: color 0.25s ease-in-out;
}
#theme-toggle:hover svg {
  color: var(--font-color);
}
#theme-toggle .theme-icon-dark {
  display: none;
}
html[data-theme="dark"] #theme-toggle svg {
  color: #fff;
}
html[data-theme="dark"] #theme-toggle:hover svg {
  color: #fff;
}
html[data-theme="dark"] #theme-toggle .theme-icon-light {
  display: none;
}
html[data-theme="dark"] #theme-toggle .theme-icon-dark {
  display: inline;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) #theme-toggle svg {
    color: #fff;
  }
  html:not([data-theme="light"]) #theme-toggle:hover svg {
    color: #fff;
  }
  html:not([data-theme="light"]) #theme-toggle .theme-icon-light {
    display: none;
  }
  html:not([data-theme="light"]) #theme-toggle .theme-icon-dark {
    display: inline;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts ul {
  color: var(--font-secondary-color);
  list-style-type: circle;
}
.related-posts ul li {
  margin: 0 0 7px 0;
}
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  white-space: nowrap;
  width: 100%;
  padding-top: 2em;
}
.pagination a,
.pagination span {
  font-size: 16px;
  font-family: georgia, serif;
  color: var(--paginator-color);
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 5px 5px;
  text-decoration: none;
  transition: 0.3s;
}
.pagination .page-number {
  padding-bottom: 3px;
  margin: 0 20px;
  box-sizing: border-box;
  position: relative;
  display: inline;
}
.pagination .page-number.disabled {
  display: none;
}
.pagination .page-number:hover a {
  color: var(--pagination-link-active-color);
}
.pagination .page-number:before,
.pagination .page-number:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: var(--pagination-link-active-color);
  transition: 0.3s;
  bottom: 0px;
}
.pagination .page-number:before .current,
.pagination .page-number:after .current {
  width: 100%;
}
.pagination .page-number:before {
  left: 50%;
}
.pagination .page-number:after {
  right: 50%;
}
.pagination .page-number:hover:before,
.pagination .page-number:hover:after {
  width: 50%;
}
.pagination .page-number.current {
  color: var(--pagination-link-active-color);
}
.pagination .page-number.current:before,
.pagination .page-number.current:after {
  width: 60%;
}
.front-archive {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.front-archive-title {
  font-size: 1.8em;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}
.front-archive-item {
  border-bottom: 1px #808080 dashed;
  height: 50px;
  line-height: 51px;
}
.front-archive-item-link {
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}
.front-archive-item-link:hover {
  color: var(--link-hover-color);
  background-color: transparent;
}
.front-archive-item-date {
  float: right;
  text-align: right;
  color: var(--font-secondary-color);
}
@media screen and (max-width: 479px) {
  .front-archive-item-link {
    white-space: normal;
  }
  .front-archive-item-date {
    display: none;
  }
}
.sidebar {
  width: 25%;
  border-left: 1px solid var(--post-link-color-opacity);
  padding-left: 25px;
  margin-left: 30px;
}
.sidebar .post {
  margin: 0;
  padding: 0;
}
.sidebar .post .post-content h1::before,
.sidebar .post .post-content h2::before,
.sidebar .post .post-content h3::before {
  content: none;
}
.sidebar .post .post-content h1,
.sidebar .post .post-content h2,
.sidebar .post .post-content h3 {
  color: var(--post-link-color);
}
.sidebar .post .post-content img {
  margin: 20px auto 0;
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.sidebar .post .post-content img:hover {
  opacity: 1;
}
.sidebar .post .post-content p {
  text-align: center;
}
.sidebar .post .post-content ul {
  list-style-type: none;
  padding: 0;
}
.sidebar h3 {
  margin-top: 0px !important;
  color: var(--post-link-color-opacity) !important;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .sidebar .post-content a {
    color: var(--post-link-color);
    text-decoration: none;
  }
  html:not([data-theme="light"]) .sidebar .post-content a:hover {
    color: #fff;
    text-decoration: underline;
  }
}
html[data-theme="dark"] .sidebar .post-content a {
  color: var(--post-link-color);
  text-decoration: none;
}
html[data-theme="dark"] .sidebar .post-content a:hover {
  color: #fff;
  text-decoration: underline;
}
#archive {
  width: 75%;
}
.archive-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.post-list {
  padding-left: 0px;
  margin-top: 0px;
}
.archive-item-link {
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}
.archive-item-link:hover {
  color: var(--link-hover-color);
  background-color: transparent;
}
.archive-item-date {
  float: right;
  text-align: right;
  color: var(--font-secondary-color);
}
.post-list-minimal {
  font-family: georgia, serif;
  margin-top: 1em;
}
.post-list-minimal .post-minimal {
  border-bottom: 1px #808080 dashed;
  line-height: 3em;
  height: 3em;
}
.post-list-minimal .post-minimal .post-title {
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.2em;
  margin-bottom: 20px;
  max-width: 60%;
  text-overflow: ellipsis;
}
.post-list-minimal .post-minimal .post-date {
  float: right;
  text-align: right;
  color: var(--font-secondary-color);
}
.tag-title {
  font-family: georgia, serif;
  font-size: 1.2em;
  line-height: 1.5em;
  text-decoration: underline;
  font-weight: bold;
}
.tag-cloud-tags {
  margin: 10px 0;
  padding-top: 2em;
}
.tag-cloud-tags a {
  display: inline-block;
  position: relative;
  margin: 5px 10px;
  word-wrap: break-word;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.tag-cloud-tags a:active,
.tag-cloud-tags a:focus,
.tag-cloud-tags a:hover {
  color: var(--link-hover-color);
  transform: scale(1.1);
}
.tag-cloud-tags a small {
  margin: 0 0.3em;
  color: var(--font-secondary-color);
}
.page {
  padding-top: 0;
}
.page .post-content {
  margin: 0;
  padding-top: 0;
}
.home {
  margin: 0 auto 3em auto;
}
.home #nav {
  text-align: center;
  height: 3.5em;
  cursor: default;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.home #nav a {
  width: 80px;
  opacity: 0.35;
  outline: 0;
  transition: opacity 0.25s ease-in-out;
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: default;
}
.home #nav a:before {
  font-size: 0.8em;
}
.home #nav a:hover {
  opacity: 0.8;
  bottom: -1px;
}
.home #nav a:hover span {
  opacity: 1;
}
.home #nav a.active {
  opacity: 0.8;
}
.home #nav a.active:after {
  border-bottom-width: 10px;
}
.home #nav a span {
  display: inline-block;
  position: absolute;
  background: var(--font-color);
  color: var(--tooltip-color);
  top: -2.5em;
  left: -10px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100px;
  border-radius: 9px;
  font-size: 0.5em;
  font-family: source-sans-pro;
  padding: 5px 0;
}
.home #nav a span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -0.4em;
  left: 50%;
  margin-left: -0.6em;
  border-top: solid 0.6em var(--font-color);
  border-left: solid 0.6em transparent;
  border-right: solid 0.6em transparent;
}
.home #nav a.icon {
  position: relative;
  text-decoration: none;
  font-size: 2em;
}
.home #nav a.icon:before {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: normal;
  text-transform: none;
}
.home #nav a.icon > .label {
  display: none;
}
.home #nav .line {
  display: none;
}
.home #main {
  border-radius: 9px;
  border: 1px var(--border-color) solid;
  height: 13em;
  background: var(--panel-bg);
}
.home #main .panel {
  padding: 1em;
  width: 100%;
  height: 100%;
  transition: visibility 0s linear 0.5s;
}
.home #main .panel .text {
  padding: 0 4em;
}
.home #main .panel .text p {
  font-family: georgia, serif;
  color: var(--font-secondary-color);
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0;
  text-align: justify;
}
.home #main .panel .text strong,
.home #main .panel .text b,
.home #main .panel .text h1,
.home #main .panel .text h2,
.home #main .panel .text h3,
.home #main .panel .text h4,
.home #main .panel .text h5,
.home #main .panel .text h6 {
  font-weight: 400;
  color: var(--panel-text-color);
}
.home #main .panel .text h1 {
  font-family: indie-flower;
  font-size: 2em;
  text-align: center;
  margin: 17px 0 0 0;
}
.home #main .panel .text h2 {
  font-size: 1.8em;
}
.home #main .panel .text h3,
.home #main .panel .text h4,
.home #main .panel .text h5,
.home #main .panel .text h6 {
  font-size: 1.25em;
}
.home #main #initial .text {
  width: 100%;
  text-align: center;
  padding: 0 20%;
}
.home #main #initial .text p {
  text-align: unset;
}
.home #main #initial .text h1 {
  margin: 40px 0 0 0;
  font-size: 2.4em;
  font-family: indie-flower;
  margin-bottom: 0;
}
.home #main #initial .text .typed-cursor {
  position: relative;
  top: -0.05em;
  opacity: 1;
  animation: blink 0.7s infinite;
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 650px) {
  .home {
    width: 90%;
    padding-top: 1em;
  }
  .home #nav {
    height: 6.5em;
  }
  .home #nav a span {
    display: none;
  }
  .home #nav .line {
    display: initial;
    flex-basis: 100%;
  }
  .home .panel {
    padding: 0.6em 1.4em;
  }
  .home .text {
    float: initial;
    padding: 10px 10px 0 10px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .home .text > header {
    text-align: center;
  }
  .home .text p {
    margin: 0;
  }
  .home .photo-wrapper {
    float: initial;
    width: 100%;
    height: 250px;
    margin: 0 auto;
    position: relative;
  }
  .home h1 {
    margin: 10px 0 20px 0;
    font-size: 1.8em;
  }
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .home #nav a:hover {
    opacity: 1;
  }
}
html[data-theme="dark"] .home #nav a:hover {
  opacity: 1;
}
.error {
  border-radius: 9px;
  border: 1px var(--error-border-color) solid;
  padding: 3em;
  margin-top: 4em;
}
.error .post-content {
  margin-bottom: 0;
}
.error .post-content h3 {
  margin-top: 0;
}
.error .post-content p {
  margin-bottom: 0;
}
.taxonomy-count {
  margin: 0 5px;
}
.taxonomy-count::before {
  content: "(";
}
.taxonomy-count::after {
  content: ")";
}
.post {
  font-family: georgia, serif;
  margin-bottom: 4em;
}
.post .post-title {
  font-size: 1.2em;
  line-height: 1.5em;
  text-decoration: underline;
  font-weight: bold;
  position: relative;
}
.post .post-title:hover {
  text-decoration: none;
}
.post .post-title::before {
  content: "#";
  color: var(--post-link-hover-color);
  font-size: 5em;
  display: block;
  position: absolute;
  left: -70px;
  opacity: var(--post-hash-opacity);
}
.post .post-meta,
.post .post-footer {
  font-size: 1em;
  color: var(--font-secondary-color);
}
.post .post-meta a,
.post .post-footer a {
  color: var(--font-secondary-color);
  text-decoration: underline;
}
.post .post-meta a:hover,
.post .post-footer a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
.post-content {
  font-size: 1.1em;
  line-height: 1.5em;
  margin-bottom: 1em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-size: 1.1em;
  margin-top: 1.2em;
  margin-bottom: 1em;
}
.post-content h1::before {
  content: "#";
  margin-right: 5px;
  color: var(--post-link-color);
}
.post-content h2::before {
  content: "#";
  margin-right: 5px;
  color: var(--post-link-color);
}
.post-content h3::before {
  content: "|";
  margin-right: 5px;
  color: var(--post-link-color);
}
.post-content h4::before {
  content: "*";
  margin-right: 5px;
  color: var(--post-link-color);
}
.post-content a:hover {
  color: var(--post-link-hover-color);
}
.post-content a {
  background: url("/images/pen-brushes.svg");
  color: var(--post-link-marker-color);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .post-content a {
    background: none;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 0.3em;
  }
  html:not([data-theme="light"]) .post-content a:hover {
    text-decoration: none;
  }
}
html[data-theme="dark"] .post-content a {
  background: none;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 0.3em;
}
html[data-theme="dark"] .post-content a:hover {
  text-decoration: none;
}
.post-content ul {
  padding-left: 2em;
}
.post-content table {
  max-width: 100%;
  margin: 10px auto;
  border-spacing: 0;
}
.post-content table thead {
  background: var(--table-header-bg);
}
.post-content table th,
.post-content table td {
  padding: 5px 15px;
  border: 0.5px solid var(--border-color);
}
.post-content .image-caption:not(:empty) {
  min-width: 20%;
  max-width: 80%;
  display: inline-block;
  padding: 10px;
  margin: 0 auto;
  border-bottom: 1px solid var(--caption-border-color);
  font-size: 14px;
  color: var(--caption-text-color);
  line-height: 1.7;
}
.post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 9px;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.post-content img:hover {
  transform: scale(1.05);
}
.post-content blockquote {
  padding: 1em 1.2em 1em 1.2em;
  position: relative;
  font-family: monospace;
  line-height: 140%;
  font-weight: normal;
  text-align: left;
}
.post-content blockquote:after {
  content: '\201D';
  font-size: 9em;
  font-family: georgia, serif;
  color: var(--link-hover-color);
  font-weight: bold;
  opacity: var(--post-hash-opacity);
  z-index: -1;
  position: absolute;
  left: -30px;
  top: 65px;
  transform: rotate(-17deg);
}
.post-content blockquote:after p {
  margin: 0;
}
.post-content blockquote:after footer strong {
  margin-right: 0.5em;
}
.post-content blockquote:after.pullquote {
  background-color: transparent;
  max-width: 45%;
  border: 0;
}
.post-content blockquote:after.pullquote.left {
  float: left;
  text-align: left;
}
.post-content blockquote:after.pullquote.right {
  float: right;
  text-align: right;
}
.post-content .svg-inline--fa {
  font-size: 1.7em;
  vertical-align: bottom;
}
.post-content hr {
  margin-top: 2em;
  margin-bottom: 2em;
}
.post-content iframe {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.post-content code,
.post-content pre {
  line-height: 1.7em;
  padding: 7px;
  font-size: 14px;
  font-family: Consolas, Monaco, Menlo, Consolas, monospace;
}
.post-content code {
  line-height: 1.7em;
  padding: 3px 5px;
  border-radius: 4px;
  color: var(--code-font-color);
  background: var(--code-bg-color);
}
.post-content iframe {
  margin: 0 auto;
}
.post-content figure.highlight {
  margin: 1em 0;
  overflow-x: auto;
  position: relative;
}
.post-content figure.highlight::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.post-content figure.highlight::-webkit-scrollbar-thumb {
  width: 6px;
  background-color: var(--scrollbar-color);
  border-radius: 2px;
}
.post-content figure.highlight figcaption {
  padding: 0 0.5em;
  text-align: right;
  font-size: 13px;
}
.post-content figure.highlight figcaption span {
  margin: 0 0.5em;
}
.post-content figure.highlight table {
  position: relative;
}
.post-content figure.highlight table,
.post-content figure.highlight tr,
.post-content figure.highlight td {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  border-collapse: collapse;
}
.post-content figure.highlight .code pre {
  margin: 0 10px;
}
.post-content figure.highlight .gutter {
  width: 10px;
  color: var(--gutter-color);
}
.post-content figure.highlight .gutter pre {
  margin: 0;
}
.post-content .left {
  float: left;
  margin-right: 25px;
}
.post-content .right {
  float: right;
  margin-left: 25px;
}
.post-content .textright {
  text-align: right;
}
.post-content .center {
  text-align: center;
}
.post-nav {
  font-family: georgia, serif;
  font-size: 1em;
  color: var(--font-secondary-color);
}
.post-nav a {
  color: var(--font-secondary-color);
}
.post-nav a:hover {
  color: var(--link-hover-color);
}
.post-nav:before,
.post-nav:after {
  content: " ";
  display: table;
}
.post-nav a.prev,
.post-nav a.next {
  transition-property: transform;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
}
.post-nav a.prev {
  float: left;
}
.post-nav a.prev::before {
  content: "<";
  margin-right: 0.5em;
}
.post-nav a.prev:hover {
  transform: translateX(-4px);
}
.post-nav a.next {
  float: right;
}
.post-nav a.next::after {
  content: ">";
  margin-left: 0.5em;
}
.post-nav a.next:hover {
  transform: translateX(4px);
}
.miniblog-post {
  border: solid 1px var(--font-secondary-color);
  border-radius: 5px;
  padding: 0 20px;
}
.miniblog-post .miniblog-link {
  font-size: 1.2em;
  line-height: 1.5em;
  text-decoration: underline;
  font-weight: bold;
  position: relative;
}
.miniblog-post .miniblog-link::before {
  content: "#";
  color: var(--post-link-hover-color);
  font-size: 5em;
  display: block;
  position: absolute;
  left: -90px;
  top: 31px;
  opacity: var(--post-hash-opacity);
}
.post-toc {
  position: fixed;
  top: 250px;
  right: 2em;
  width: 12rem;
  font-family: georgia, serif;
  font-size: $font-size-9;
}
.post-toc .tocbot-list {
  max-height: 450px;
  max-width: 250px;
  overflow: auto;
  position: relative;
  padding-right: 0.875rem;
}
.post-toc .tocbot-list ul {
  list-style: none;
  position: inherit;
  overflow: hidden;
}
.post-toc .tocbot-list ul li {
  margin-left: 0.25rem;
  margin-top: 5px;
}
.post-toc .toc-link::before {
  background-color: var(--bg-color);
}
.post-toc .is-active-link::before {
  background-color: var(--post-link-color);
}
.post-toc .tocbot-list-menu {
  margin: 1rem 0.75rem;
  font-size: $font-size-9;
}
.post-toc .tocbot-list-menu a {
  display: block;
  margin: 0.375rem 0;
  color: var(--toc-link-color);
  cursor: pointer;
}
.post-toc .tocbot-list-menu a:hover {
  color: #808080;
}
.toc{overflow-y:auto}.toc>.toc-list{overflow:hidden;position:relative}.toc>.toc-list li{list-style:none}.js-toc{overflow-y:hidden}.toc-list{margin:0;padding-left:10px}a.toc-link{color:currentColor;height:100%}.is-collapsible{max-height:1000px;overflow:hidden;transition:all 300ms ease-in-out}.is-collapsed{max-height:0}.is-position-fixed{position:fixed !important;top:0}.is-active-link{font-weight:700}.toc-link::before{background-color:#EEE;content:' ';display:inline-block;height:inherit;left:0;margin-top:-1px;position:absolute;width:2px}.is-active-link::before{background-color:#54BC4B}

@media screen and (max-width: 479px) {
  .wrapper {
    background: no-repeat top/120% var(--header-background);
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .wrapper .header {
    min-height: unset;
  }
  .wrapper .main {
    width: 100%;
  }
  .wrapper .main .home {
    margin: 0 auto 2em auto;
    width: 100%;
  }
  .wrapper .main .home #main {
    height: unset;
  }
  .wrapper .main .home #main .text {
    padding: 0 !important;
  }
  .wrapper .main .home #main .text h1 {
    margin: 0 !important;
  }
  .post {
    margin-bottom: 2em;
    margin-top: 3em;
  }
  .post .post-title::before {
    content: unset;
  }
  .miniblog-post .miniblog-link::before {
    content: unset;
  }
  #archive {
    width: 100%;
  }
  .archive-container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--post-link-color);
    padding-left: 0px;
    padding-top: 10px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 1279px) {
  .post-toc {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .instagram-wrapper {
    margin: 1em auto;
    width: 80%;
  }
}
@media screen and (min-width: 481px) {
  .instagram-wrapper {
    margin: 1em auto;
    width: 90%;
  }
}
@media screen and (min-width: 0px) and (max-width: 480px) {
  .instagram-wrapper {
    margin: 1em auto;
    width: 100%;
  }
}
html {
  --plyr-color-main: var(--link-hover-color);
}
.plyr {
  margin: 1.2em 0;
  border-radius: 9px;
}
.timeline {
  margin: 10px 0 10px 0;
  display: inline-block;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.timeline * {
  border: 0 solid var(--timeline-border-color);
  line-height: 1.5;
}
.timeline * p {
  margin-block-start: 0em;
  margin-block-end: 1em;
}
.timeline * img {
  margin: 0;
}
.timeline * img:hover {
  transform: scale(1.01);
}
.timeline-node {
  position: relative;
  padding-left: 6.5rem;
  padding-bottom: 1.5rem;
  float: left;
}
.timeline-body {
  align-items: center;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.timeline-time {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  position: absolute;
  left: 0;
  font-size: 0.875rem;
  font-weight: 600;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: var(--timeline-badge-color);
  background-color: var(--timeline-badge-bg);
  border-radius: 9999px;
  width: 4.9rem;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  text-align: right;
  margin-top: 3px;
}
.timeline-line {
  position: absolute;
  left: 0;
  height: 100%;
  padding-left: 1px;
  padding-right: 1px;
  background-color: var(--timeline-line-color);
  margin-left: 5.45rem;
  align-self: flex-start;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  --transform-translate-x: 0%;
  --transform-translate-y: 0.75em;
}
.timeline-circle {
  position: absolute;
  left: 0;
  width: 0.5rem;
  margin-left: 5rem;
  height: 0.5rem;
  box-sizing: content-box;
  border-width: 4px;
  border-radius: 9999px;
  border-color: var(--timeline-line-color);
  background-color: var(--timeline-circle-bg);
  margin-top: 9px;
}
.timeline-title {
  color: var(--font-color);
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: normal;
}
.timeline-title p {
  margin: 0;
}
.timeline-subtitle {
  font-size: 1.25rem;
  color: var(--timeline-date-color);
  margin-bottom: 10px;
}
.timeline-subtitle p {
  margin: 0;
}
.timeline .last .timeline-line {
  display: none;
}
.timeline.noleft .timeline-circle {
  margin-left: 0;
}
.timeline.noleft .timeline-line {
  margin-left: 0.45rem;
}
.timeline.noleft .timeline-node {
  flex: 1;
  position: relative;
  padding-left: 1.7rem;
}
.timeline.noleft .timeline-time {
  display: none;
}
@media screen and (max-width: 479px) {
  .timeline {
    margin-top: 40px;
  }
  .timeline-circle {
    margin-left: 0;
  }
  .timeline-line {
    margin-left: 0.45rem;
  }
  .timeline-node {
    flex: 1;
    position: relative;
    padding-left: 1.7rem;
  }
  .timeline-time {
    display: block !important;
    left: unset;
    width: unset;
    position: absolute;
    top: -33px;
    left: 22px;
  }
}
.badge {
  border-radius: 8px;
  background-color: #ffa500;
  padding: 3px 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8em;
  box-decoration-break: clone;
}
.badge a {
  text-transform: initial;
  background: none;
  text-decoration: underline;
}
.badge a:hover {
  text-decoration: none;
}
