@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Fira+Code:400,600");
:root {
  --fg: #f8f8f2;
  --bglighter: #424450;
  --bglight: #343746;
  --bg: #282a36;
  --bgdark: #21222c;
  --bgdarker: #191a21;
  --comment: #6272a4;
  --selection: #44475a;
  --subtle: #424450;
  --cyan: #8be9fd;
  --green: #50fa7b;
  --orange: #ffb86c;
  --pink: #ff79c6;
  --purple: #bd93f9;
  --red: #f55;
  --yellow: #f1fa8c;
  --background: #282a36;
  --comment: #6272a4;
  --foreground: #f8f8f2;
  --selection: #44475a;
  --cyan: #8be9fd;
  --green: #50fa7b;
  --orange: #ffb86c;
  --pink: #ff79c6;
  --purple: #bd93f9;
  --red: #f55;
  --yellow: #f1fa8c;
  --background-30: rgba(40, 42, 54, 0.2);
  --comment-30: rgba(98, 114, 164, 0.2);
  --foreground-30: rgba(248, 248, 242, 0.2);
  --selection-30: rgba(68, 71, 90, 0.2);
  --cyan-30: rgba(139, 233, 253, 0.2);
  --green-30: rgba(80, 250, 123, 0.2);
  --orange-30: rgba(255, 184, 108, 0.2);
  --pink-30: rgba(255, 121, 198, 0.2);
  --purple-30: rgba(189, 147, 249, 0.2);
  --red-30: rgba(255, 85, 85, 0.2);
  --yellow-30: rgba(241, 250, 140, 0.2);
  --background-40: rgba(40, 42, 54, 0.4);
  --comment-40: rgba(98, 114, 164, 0.4);
  --foreground-40: rgba(248, 248, 242, 0.4);
  --selection-40: rgba(68, 71, 90, 0.4);
  --cyan-40: rgba(139, 233, 253, 0.4);
  --green-40: rgba(80, 250, 123, 0.4);
  --orange-40: rgba(255, 184, 108, 0.4);
  --pink-40: rgba(255, 121, 198, 0.4);
  --purple-40: rgba(189, 147, 249, 0.4);
  --red-40: rgba(255, 85, 85, 0.4);
  --yellow-40: rgba(241, 250, 140, 0.4);
  --a: mediumspringgreen;
  --c: deeppink;
  --d: darkviolet;
  --e: dodgerblue;
  --f: fuchsia;
  --g: chartreuse;
  --h: crimson;
  --i: yellow;
  --j: black;
  --k: white;
  --l: dimgrey;
  --m: mediumslateblue;
  --n: darkorchid;
  --o: hotpink;
  --top-bar-color: #e1e1e1;
  --top-bar-bg-color: #e1e1e1;
  --toggle-main-nav-color: #e1e1e1;
  --toggle-main-nav-bg-color: #e1e1e1;
  --header-color: #e1e1e1;
  --header-bg-color: #e1e1e1;
  --body-color: #2c2c2c;
  --body-bg-color: whitemoke;
  --body-font-size: 16px;
  --main-color: whitesmoke;
  --footer-color: #e1e1e1;
  --footer-bg-color: #e1e1e1;
  --nav-bg-color: #32425c;
  --nav-color: #fff;
  --pre-color: #f5f5f5;
  --pre-bg-color: #f5f5f5;
  --table-bg-color: #e1e1e1;
  --thead-bg-color: #d2d2d2;
  --link-color: #0059e6;
  --link-visited-color: #07398c;
  --link-hover-color: #011225;
  --link-active-color: #1167ef;
}

html {
  box-sizing: border-box;
  word-break: break-word;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

*:focus {
  outline: 3px dashed black;
}

body {
  color: #2c2c2c;
  color: var(--body-color);
  font-size: calc(16px + 0.2vw);
  font-size: calc(var(--body-font-size) + 0.2vw);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  background: whitesmoke;
}

@view-transition {
  navigation: auto;
}
.overflow-hidden {
  overflow: hidden !important;
}

.hidden {
  visibility: hidden;
}

.vertical-bar {
  background-color: currentColor;
  height: 2em;
  margin: 0 1em;
  width: 3px;
}

.lower {
  text-transform: lowercase;
}

.upper {
  text-transform: uppercase;
}

.caps {
  text-transform: capitalize;
}

*[data-hidden] {
  visibility: hidden;
}

#skip {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 5;
}

#skip a,
#skip a:visited,
#skip a:active,
#skip a:hover {
  color: #f8f8f2;
  color: var(--foreground);
  left: -10000px;
  overflow: hidden;
  position: absolute;
  transition: all 300ms;
}

@-webkit-keyframes skip {
  from {
    position: absolute;
  }
  to {
    position: static;
  }
}

@keyframes skip {
  from {
    position: absolute;
  }
  to {
    position: static;
  }
}
#skip a:focus {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: skip;
          animation-name: skip;
  background: #ff79c6;
  background: var(--pink);
  margin: 0 20px 50px;
  outline-color: white;
  padding: 8px 20px;
  transition: all 300ms;
}

/* Links */
a {
  color: #0059e6;
  color: var(--link-color);
  text-decoration: none;
}

a:visited {
  color: #0059e6;
  color: var(--link-color);
}

a:hover {
  color: #011225;
  color: var(--link-hover-color);
  text-decoration: underline;
}

body {
  font-family: "Fira Code", monospace;
  font-weight: 400;
  line-height: 1.75;
}

p {
  margin-bottom: 1em;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 3rem 0 1.38rem;
  font-family: "Fira Code", monospace;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

small,
.text_small {
  font-size: 0.8rem;
}

h1 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h1:target {
  margin-top: -2em;
  padding-top: 4em;
  display: inline-block;
}

h1 a,
h1 a:visited,
h1 a:active {
  display: inline;
  color: inherit;
  margin-left: 0.5em;
  text-decoration: none;
}
h1 a:hover {
  text-decoration: underline;
}

h2 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h2:target {
  margin-top: -2em;
  padding-top: 4em;
  display: inline-block;
}

h2 a,
h2 a:visited,
h2 a:active {
  display: inline;
  color: inherit;
  margin-left: 0.5em;
  text-decoration: none;
}
h2 a:hover {
  text-decoration: underline;
}

h3 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h3:target {
  margin-top: -2em;
  padding-top: 4em;
  display: inline-block;
}

h3 a,
h3 a:visited,
h3 a:active {
  display: inline;
  color: inherit;
  margin-left: 0.5em;
  text-decoration: none;
}
h3 a:hover {
  text-decoration: underline;
}

h4 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h4:target {
  margin-top: -2em;
  padding-top: 4em;
  display: inline-block;
}

h4 a,
h4 a:visited,
h4 a:active {
  display: inline;
  color: inherit;
  margin-left: 0.5em;
  text-decoration: none;
}
h4 a:hover {
  text-decoration: underline;
}

h5 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h5:target {
  margin-top: -2em;
  padding-top: 4em;
  display: inline-block;
}

h5 a,
h5 a:visited,
h5 a:active {
  display: inline;
  color: inherit;
  margin-left: 0.5em;
  text-decoration: none;
}
h5 a:hover {
  text-decoration: underline;
}

article {
  margin-bottom: 3em;
}

blockquote {
  border: 1px solid;
  border-left: #2c2c2c 0.5em solid;
  border-left: var(--body-color) 0.5em solid;
  padding: 0.5em 1.5em;
  margin: 0em;
}
blockquote > * {
  background: rgba(139, 233, 253, 0.4);
  background: var(--cyan-40);
}

cite {
  font-size: 0.9em;
}

table,
pre {
  overflow-x: auto;
}

table {
  border: 1px solid;
}

thead {
  background: #f1fa8c;
  background: var(--yellow);
}

tbody {
  background: rgba(241, 250, 140, 0.4);
  background: var(--yellow-40);
}

th,
td {
  border: 1px solid;
  padding: 1vw;
}

aside#outline {
  margin-top: 4em;
  margin-bottom: 4em;
}
aside#outline nav#TableOfContents ul {
  list-style-type: none;
  font-weight: bold;
  padding: 0;
  padding-left: calc(40px - 1em);
  border-left: 0.5em solid #8be9fd;
  border-left: 0.5em solid var(--cyan);
  margin-left: 0.5em;
}
aside#outline nav#TableOfContents ul a {
  color: #2c2c2c;
  color: var(--body-color);
}
aside#outline nav#TableOfContents ul a:visited {
  color: #2c2c2c;
  color: var(--body-color);
}
aside#outline nav#TableOfContents ul a:hover {
  color: #2c2c2c;
  color: var(--body-color);
}
aside#outline nav#TableOfContents ul a:active {
  color: #2c2c2c;
  color: var(--body-color);
}
aside#outline nav#TableOfContents ul a {
  text-decoration: none;
}
aside#outline h2 {
  margin-top: 1em;
}
aside#outline ~ h2 {
  padding-top: 0;
}

body {
  --menu-bar-height: 55px;
  display: grid;
  grid-template-areas: "actions" "head" "main" "foot";
  grid-template-columns: 100vw;
  grid-template-rows: var(--menu-bar-height) minmax(16em, -webkit-max-content) 1fr 12em;
  grid-template-rows: var(--menu-bar-height) minmax(16em, max-content) 1fr 12em;
  grid-template-rows: var(--menu-bar-height) minmax(16em, max-content) 1fr 12em;
  height: 100%;
  max-width: 100vw;
  min-height: 100vh;
}
body.modal-open {
  overflow: hidden !important;
}

#menu-bar {
  align-items: center;
  background: #282a36;
  background: var(--bg);
  display: flex;
  flex-flow: row wrap;
  grid-area: actions;
  left: 0;
  padding: 15px 1em;
  position: sticky;
  top: 0;
  z-index: 2;
}
#menu-bar *:focus {
  outline: dashed 3px #f8f8f2;
  outline: dashed 3px var(--foreground);
}
#menu-bar .hamburger {
  background: #50fa7b;
  background: var(--green);
  border: none;
  color: #32425c;
  color: var(--nav-bg-color);
  padding: 0.1em 10px;
  height: calc(var(--menu-bar-height) / 100 * 70);
  height: calc(var(--menu-bar-height) / 100 * 70);
  width: calc(var(--menu-bar-height) / 100 * 90);
  width: calc(var(--menu-bar-height) / 100 * 90);
  min-width: var(--size);
  min-width: var(--size);
  display: inline-block;
  border-radius: 4px;
}
#menu-bar .hamburger .hamburger-inner {
  border-radius: 4px;
}

header {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  grid-area: head;
}
header a {
  color: #bd93f9;
  color: var(--purple);
}
header a:visited {
  color: #bd93f9;
  color: var(--purple);
}
header a:hover {
  color: #bd93f9;
  color: var(--purple);
}
header a:active {
  color: #bd93f9;
  color: var(--purple);
}
header > * {
  background-color: #282a36;
  background-color: var(--bg);
  color: #bd93f9 !important;
  color: var(--purple) !important;
}
header h1 {
  margin-bottom: 0;
}
header div:first-of-type {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
header div:first-of-type span {
  color: #ff79c6;
  color: var(--pink);
  background: #424450;
  background: var(--bglighter);
}
header div:last-of-type {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  background: #424450;
  background: var(--bglighter);
}
header div:last-of-type span {
  color: #f1fa8c;
  color: var(--yellow);
}

@-webkit-keyframes blink {
  0% {
    background: inherit;
  }
  100% {
    background: #424450;
    background: var(--bglighter);
  }
}

@keyframes blink {
  0% {
    background: inherit;
  }
  100% {
    background: #424450;
    background: var(--bglighter);
  }
}
a.site-title {
  margin: 0 auto;
  background-color: #282a36;
  background-color: var(--bg);
  color: #bd93f9 !important;
  color: var(--purple) !important;
  font-weight: bold;
  text-decoration: none;
  text-transform: lowercase;
}
a.site-title span:first-of-type,
a.site-title span:last-of-type {
  color: #50fa7b;
  color: var(--green);
}
a.site-title span:nth-last-child(0n+2) {
  background: #424450;
  background: var(--bglighter);
}
@media screen and (max-width: 330px) {
  a.site-title {
    display: none;
  }
}
a.site-title:hover span:nth-last-child(0n+2) {
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}

#main-nav {
  display: flex;
  flex-flow: column nowrap;
  background-color: #191a21;
  background-color: var(--bgdarker);
  bottom: 0;
  left: -100vw;
  opacity: 0;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: var(--menu-bar-height);
  top: var(--menu-bar-height);
  transition: opacity, left, 300ms ease-in-out;
  z-index: 1;
}
#main-nav *:focus {
  outline: dashed 3px #f8f8f2;
  outline: dashed 3px var(--foreground);
}
#main-nav.active {
  opacity: 1;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}
#main-nav a,
#main-nav a:visited,
#main-nav a:hover,
#main-nav a:focus {
  color: #bd93f9;
  color: var(--purple);
  font-size: 1em;
  line-height: 1.2;
}
#main-nav ul {
  list-style-type: none;
}
#main-nav ul li.active, #main-nav ul li.active a {
  background: #bd93f9;
  background: var(--purple);
  color: #191a21;
  color: var(--bgdarker);
}
#main-nav ul li a {
  text-decoration: none;
}
#main-nav ul li a:hover {
  -webkit-text-decoration: underline 3px #50fa7b;
          text-decoration: underline 3px #50fa7b;
  -webkit-text-decoration: underline 3px var(--green);
          text-decoration: underline 3px var(--green);
}
#main-nav ul.nav-top {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  padding-top: 1em;
  width: 100vw;
  background: #424450;
  background: var(--bglighter);
}
#main-nav ul.nav-top li {
  padding: 0 1em;
}
#main-nav ul.nav-left {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
  justify-items: flex-start;
  margin: 0;
  min-height: 100%;
  padding: 2em 0;
}
#main-nav ul.nav-left li {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  font-weight: bold;
  justify-content: flex-start;
  margin: 0.15em 0;
  text-transform: uppercase;
  width: 100%;
}

main {
  display: grid;
  grid-area: main;
  grid-template-areas: "section";
  grid-template-columns: 1fr;
  max-width: 100vw;
  position: relative;
}
main h1 {
  text-transform: uppercase;
}

main > section {
  grid-area: section;
  padding: 5vw;
  max-width: 100vw;
}
main > section#single #content:not(.highlight) {
  line-height: 1.87em;
}
main > section#single #sidebar-right nav {
  background: rgba(241, 250, 140, 0.4);
  background: var(--yellow-40);
}
main > section#single #sidebar-right nav > strong {
  display: inline-block;
  text-transform: uppercase;
  color: #ff79c6;
  color: var(--pink);
  background: #282a36;
  background: var(--bg);
  width: 100%;
  padding: 0.2em;
}
main > section#single #sidebar-right ul {
  padding-right: 2em;
  list-style-type: none;
}
main > section#single #sidebar-right ul li::marker {
  content: "🔗 ";
}

footer {
  align-items: center;
  background-color: #21222c;
  background-color: var(--bgdark);
  color: white;
  display: grid;
  grid-area: foot;
  grid-template-columns: 1fr 2em 1fr;
  grid-template-rows: auto;
}
footer a {
  color: #bd93f9;
  color: var(--purple);
}
footer a:visited {
  color: #bd93f9;
  color: var(--purple);
}
footer a:hover {
  color: #bd93f9;
  color: var(--purple);
}
footer a:active {
  color: #bd93f9;
  color: var(--purple);
}
footer:first-child {
  justify-self: end;
}
footer .left {
  display: flex;
  justify-content: flex-end;
}
footer .left small {
  text-align: right;
}
footer .right {
  display: flex;
  justify-content: flex-start;
}
footer *:focus {
  outline: dashed 3px #f8f8f2;
  outline: dashed 3px var(--foreground);
}

#main-nav ul li,
#menu-bar {
  padding: 0 5vw;
}

@media screen and (min-width: 500px) {
  #main-nav ul.nav-top,
  #main-nav ul li,
  #menu-bar {
    padding: 0 10vw;
  }
  main > section {
    padding: 1vw 10vw 1vw;
  }
}
@media screen and (min-width: 1000px) {
  body {
    --menu-bar-height: 75px;
  }
  #main-nav ul.nav-top,
  #main-nav ul li,
  #menu-bar {
    padding: 0 15vw;
  }
  main > section,
  body > header {
    padding: 2vw 15vw 4vw;
  }
}
@media screen and (min-width: 1500px) {
  #main-nav ul.nav-top,
  #main-nav ul li,
  #menu-bar {
    padding: 0 25vw;
  }
  main > section,
  body > header {
    padding: 3vw 25vw 6vw;
  }
  main > section #sidebar-right,
  body > header #sidebar-right {
    position: absolute;
    top: 0;
    left: 75vw;
    padding-top: 3vw;
    padding-bottom: 6vw;
  }
}
@media screen and (min-width: 2500px) {
  #main-nav ul.nav-top,
  #main-nav ul li,
  #menu-bar {
    padding: 0 30vw;
  }
  main > section,
  body > header {
    padding: 4vw 30vw 8vw;
  }
  main > section #sidebar-right,
  body > header #sidebar-right {
    left: 70vw;
    padding-top: 4vw;
    padding-bottom: 8vw;
  }
}
figure {
  margin: 2rem 0;
  padding: 0.25rem;
  background-color: #191a21;
  background-color: var(--bgdarker);
}
figure figcaption {
  color: #ff79c6;
  color: var(--pink);
  padding: 0.5em 0.5em;
  font-size: 1rem;
  background: #424450;
  background: var(--bglighter);
  font-weight: bolder;
}

.post-list > ul {
  margin: 0;
  padding: 0;
}
.post-list > ul > li {
  list-style-type: none;
  width: 100%;
  margin-bottom: 4.5em;
  margin-top: 4.5em;
}
.post-list > ul > li h3,
.post-list > ul > li p {
  margin: 0;
}
.post-list > ul > li .post-list-item {
  background: #191a21;
  background: var(--bgdarker);
  border-radius: 0px;
  color: #bd93f9;
  color: var(--purple);
  display: block;
  flex-basis: 100%;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}
.post-list > ul > li .post-list-item h3,
.post-list > ul > li .post-list-item .series {
  background: #424450;
  background: var(--bglighter);
  color: #f1fa8c;
  color: var(--yellow);
}
.post-list > ul > li .post-list-item.empty {
  border-left: 0.3em solid #50fa7b;
  border-left: 0.3em solid var(--green);
  padding-left: 1em;
}
.post-list > ul > li .post-list-item:active, .post-list > ul > li .post-list-item:hover, .post-list > ul > li .post-list-item:focus {
  outline: 3px dashed black;
}
.post-list > ul > li .post-list-item h5 {
  background: #282a36;
  background: var(--bg);
  margin-top: 0.5em;
}
.post-list > ul > li .post-list-item p {
  background: #282a36;
  background: var(--bg);
  color: #50fa7b;
  color: var(--green);
}
.post-list > ul > li .post-list-item .date {
  color: #ff79c6;
  color: var(--pink);
  background: #424450;
  background: var(--bglighter);
}
.post-list > ul > li .tag-list,
.post-list > ul > li .category-list {
  justify-content: flex-end;
  gap: 0.5em;
  color: #ff79c6;
  color: var(--pink);
  background: #343746;
  background: var(--bglight);
}
.post-list > ul > li .tag-list li,
.post-list > ul > li .category-list li {
  margin: 0;
  background: #bd93f9;
  background: var(--purple);
  color: #191a21;
  color: var(--bgdarker);
}

.tag-list,
.category-list {
  display: flex;
  flex-flow: row wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.tag-list li:first-of-type,
.tag-list li:first-of-type a,
.category-list li:first-of-type,
.category-list li:first-of-type a {
  margin-left: 0;
}
.tag-list li:last-of-type,
.tag-list li:last-of-type a,
.category-list li:last-of-type,
.category-list li:last-of-type a {
  margin-right: 0;
}
.tag-list li,
.category-list li {
  margin: 0;
  margin-bottom: 0.5em;
}

a.tag,
a.category {
  border-radius: 0px;
  margin: 0 0.3em;
  text-transform: uppercase;
  display: inline-block;
}

a.category {
  background: #bd93f9;
  background: var(--purple);
  color: #191a21;
  color: var(--bgdarker);
}

a.category,
a.category:visited,
a.category:hover,
a.category:active {
  color: #191a21;
  color: var(--bgdarker);
}

a.category:active,
a.category:hover,
a.category:focus {
  outline: 3px dashed black;
}

a.tag {
  background: #bd93f9;
  background: var(--purple);
  color: #191a21;
  color: var(--bgdarker);
}

a.tag,
a.tag:visited,
a.tag:hover,
a.tag:active {
  color: #191a21;
  color: var(--bgdarker);
}

a.tag:active,
a.tag:hover,
a.tag:focus {
  outline: 3px dashed black;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
  background-color: #191a21 !important;
  background-color: var(--bgdarker) !important;
  border-radius: 0 !important;
}

pre,
li > code,
p > code {
  color: #8be9fd;
  color: var(--cyan);
  background-color: #424450;
  background-color: var(--bglighter);
  border: #21222c 2px solid;
  border: var(--bgdark) 2px solid;
  padding: 0.2em;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 0.8em;
  text-align: left;
  white-space: pre;
  white-space: pre-line;
  word-break: normal;
  word-spacing: normal;
  word-wrap: break-word;
}

li > code,
p > code {
  padding-left: 10px;
  padding-right: 10px;
}

.hamburger-outer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}

.hamburger-inner {
  background: #282a36;
  background: var(--background);
  display: inline-block;
  height: 14.2857142857%;
  position: relative;
  width: 100%;
}

.shortcode-live-demo {
  background: rgba(189, 147, 249, 0.2);
  background: var(--purple-30);
  margin-top: 2em;
}