:root,
html[data-theme="light"] {
  --color-bg: #fff;
  --color-text: #222;
  --color-text-muted: #666;
  --color-text-faint: #888;
  --color-text-nav: #5a5a5a;
  --color-accent: #0085bd;
  --color-link-hover: #5544ff;
  --color-link-active: #d56374;
  --color-link-sup: #aaa;
  --color-border: #ddd;
  --color-border-light: #eee;
  --color-border-faint: #ccc;
  --color-anchor: lightgrey;
  --color-surface: #f8f8f8;
  --color-surface-alt: #eee;
  --color-code-bg: #f5f5f5;
  --color-code-text: #666;
  --color-code-border: #ccc;
  --color-highlight: rgba(255, 255, 146, 0.5);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --color-bg: #1a1a1a;
  --color-text: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --color-text-faint: #808080;
  --color-text-nav: #a0a0a0;
  --color-accent: #4db8ff;
  --color-link-hover: #8888ff;
  --color-link-active: #ff8a98;
  --color-link-sup: #707070;
  --color-border: #444;
  --color-border-light: #333;
  --color-border-faint: #555;
  --color-anchor: #555;
  --color-surface: #242424;
  --color-surface-alt: #2a2a2a;
  --color-code-bg: #2d2d2d;
  --color-code-text: #c0c0c0;
  --color-code-border: #444;
  --color-highlight: rgba(255, 200, 50, 0.3);
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* https://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

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

/* https://markdotto.com/2018/02/07/github-system-fonts/ */
/* Stock */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 16px;
  line-height: 1.5;
}

p, ol, ul {
  margin: 1em 0;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 1em 0 0.75em 0;
  line-height: 1em;
}

h1 {
  font-size: 1.75em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.375em;
  font-weight: 500;
}

h4 {
  font-size: 1.125em;
  font-weight: 500;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
  color: var(--color-text-faint);
}

a {
  color: var(--color-accent);
  transition: color 0.1s ease;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: var(--color-link-active) !important;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 2em;
}

hr {
  margin: 1em 0;
  border: 0;
  border-top: 1px dashed var(--color-border-faint);
}

img, video {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

figure {
  width: 100%;
  margin: 1em 0;
  text-align: center;
}

figcaption {
  text-align: center;
  font-size: 0.9em;
  color: var(--color-text-muted);
}

figcaption p {
  margin: 0;
}

blockquote {
  padding-left: 1.25em;
  padding-right: 1.5em;
  border-left: 0.25em solid var(--color-border-light);
  color: var(--color-text-muted);
}

table {
  margin-bottom: 1em;
  width: 100%;
  display: block;
  overflow-x: auto;
}

td, th {
  vertical-align: middle;
  padding: .25rem .5rem;
  border: 1px solid var(--color-border);
}

th {
  font-weight: bold;
}

tbody tr:nth-child(2n+1) td, tbody tr:nth-child(2n+1) th {
  background-color: var(--color-surface);
}

sup, sub {
  font-size: 0.7em;
}

sup {
  vertical-align: super;
}

sup a {
  text-decoration: none;
  color: var(--color-link-sup);
  padding-left: 1px;
}

main {
  max-width: 800px;
  margin: 0 auto;
}

header {
  max-width: 800px;
  padding: 50px 20px;
  margin: 0 auto;
}

header h2 {
  float: left;
  font-size: 1.375em;
  margin: auto;
}

header h2 a {
  text-decoration: none;
  border: none;
  color: var(--color-accent) !important;
}

.combined-title-pagination {
  margin-top: 2.5em;
}

.combined-title-pagination h1 {
  display: inline;
}

.combined-title-pagination h1 a {
  text-decoration: none;
  border: none;
}

.combined-title-pagination h3 {
  display: inline;
  margin-left: 0.2em;
}

.title-group {
  margin-bottom: 0.2em;
}

.title-group .title h1 {
  margin-bottom: 0.5em;
}

.title-group .date h5 {
  color: var(--color-text-faint);
  margin: 0;
}

footer {
  margin-top: 3em;
}

footer .content-container {
  background: var(--color-surface-alt);
  padding: 2em 0;
}

footer .content-container .content {
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

.horizontal-links {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0.25em;
}

.horizontal-links a:not(:last-child)::after {
  content: "|";
  padding: 5px;
}

main div.content {
  margin: 1em 0;
}

.post-list {
  margin: 2em 0;
}

.post-list h1 a,
.post-list h2 a {
  color: var(--color-text);
  text-decoration: none;
  border: none;
}

.post-list h1 a:hover,
.post-list h2 a:hover {
  color: var(--color-link-hover);
}

.post-list h2 {
  margin: 0;
  border-bottom: none !important;
}

.post-list .read-more {
  margin-top: 1.25em;
}

.paginator {
  margin: 2em 0;
}

.paginator .disabled {
  color: var(--color-link-sup);
}

.paginator .newer {
  float: right;
  clear: both;
}

.current-page {
  color: var(--color-link-sup);
}

.album .date, .album .date h5, .album .location, .album .location h5 {
  display: inline;
}

.album .location {
  color: var(--color-text-faint);
  border-left: solid 2px var(--color-border-faint);
  padding-left: 1em;
  margin-left: 1em;
}

.album .photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7em 0.7em;
}

.album .photos a {
  display: grid;
}

.album .photos a.full-size {
  grid-column-start: 1;
  grid-column-end: 3;
}

@media (max-width: 400px) {
  body {
    font-size: 14px;
  }
  .album .photos {
    grid-template-columns: 1fr;
  }
  .album .photos a {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

/* Core layout (incl. media queries)

body
aside#left-sidebar
div#toc-wrapper
h4
nav#TableOfcontents
main
header
div.post
footer

*/
/* || Default */
body {
  display: grid;
  justify-content: center;
  grid-template-rows: auto;
  grid-template-columns: 0fr 1fr 0fr;
  grid-template-areas: "tlc header trc" "4 title-group 6" "toc main notes" " toc comments notes" "footer footer footer";
}

#left-sidebar,
.notes {
  display: none;
}

header.primary {
  grid-area: header;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  padding: 20px 20px 0;
}

header.primary > h2 {
  margin: 0;
  float: unset;
}

@media (max-width: 600px) {
  header.primary {
    row-gap: 20px;
  }
  header.primary > h2, header.primary > nav {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    width: 100%;
    min-width: fit-content;
  }
}

main {
  display: contents;
}

main > * {
  padding: 0 20px;
}

article.content {
  grid-area: main;
}

.title-group {
  grid-area: title-group;
}

.comments {
  grid-area: comments;
}

footer {
  grid-area: footer;
}

/* Layout for post-type pages (blog, notebook */
@media (min-width: 800px) {
  body.single {
    grid-template-columns: 1fr 800px 0fr;
  }
  /* Layout for non-post pages (home, list, etc.) */
  body.list {
    grid-template-columns: 1fr 800px 1fr;
  }
}

@media (min-width: 1100px) {
  body.single {
    grid-template-columns: 300px 800px 1fr;
  }
  #left-sidebar {
    grid-area: toc;
    display: unset;
    margin-left: 2em;
    padding-right: 1em;
    margin-right: 1em;
    border-right: 1px solid var(--color-border-light);
  }
}

@media (min-width: 1400px) {
  body.single {
    grid-template-columns: 300px 800px 300px;
  }
  .notes {
    grid-area: notes;
    display: unset;
  }
}

html {
  scroll-behavior: smooth;
}

#left-sidebar {
  position: sticky;
  top: 4em;
  align-self: start;
  margin-top: 24px;
  font-size: smaller;
}

#left-sidebar h4 {
  margin-top: -28px;
  margin-bottom: 0.5em;
}

#left-sidebar nav {
  float: unset;
  text-align: left;
  display: inline-block;
}

#left-sidebar ul,
#left-sidebar li {
  list-style-type: none !important;
}

#left-sidebar li {
  line-height: 1.2;
  margin-left: 0;
  margin-bottom: 0.6em;
}

#left-sidebar li > a:hover {
  text-decoration: none;
}

#left-sidebar ul {
  margin-top: 0.6em;
}

#left-sidebar li ul li {
  margin-left: 1em;
}

#left-sidebar li > a:not(:hover):not(.active) {
  color: var(--color-text-faint);
}

#left-sidebar a.active {
  color: var(--color-text);
  font-weight: 600;
}

.about-blurb {
  background-color: var(--color-surface-alt);
  padding: 10px;
  border-radius: 10px;
  margin: 1.2em 0;
}

.about-blurb p {
  margin: 0;
}

.about-blurb p:not(:first-child) {
  margin-top: 0.5em;
}

:not(header) > h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

/* Heading anchor links */
.anchor-link {
  color: var(--color-anchor);
  transform: scale(0.75);
}

.anchor-link:hover {
  color: var(--color-text);
}

/* Code blocks */
code {
  background: var(--color-code-bg);
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  color: var(--color-code-text);
  border-radius: 4px;
  padding: 0.15em 0.3em;
  border: 1px solid var(--color-code-border);
}

:not(pre) > code {
  font-size: 0.8em;
  vertical-align: middle;
  white-space: nowrap;
}

pre {
  margin: 1em 0;
}

pre > code {
  display: block;
  padding: 0.75em 1em;
  overflow-x: auto;
  min-width: 100%;
  font-size: 0.75em;
  width: 0;
}

code.has-jax {
  -webkit-font-smoothing: antialiased;
  background: inherit !important;
  border: none !important;
  font-size: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--color-text) !important;
}

/* Header nav */
header > nav a {
  color: var(--color-text-nav);
  padding: 8px 12px;
  vertical-align: middle;
}

header > nav a.header__item--selected:hover {
  text-decoration: none;
}

header > nav .header__item--selected {
  font-weight: bold;
}

/* Icons */
span.fontawesome-inline-svg > svg {
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  top: 0.15em;
  position: relative;
}

.link--no-hover:hover {
  text-decoration: none !important;
}

.link--no-hover:hover span.fontawesome-inline-svg {
  transform: scale(1.1);
}

/* Theme toggle button */
#theme-toggle {
  background: none;
  border: none;
  border-left: 1px solid var(--color-border-light);
  cursor: pointer;
  padding: 8px 12px;
  margin-left: 8px;
  color: var(--color-text-nav);
  vertical-align: middle;
}

#theme-toggle .icon-sun,
#theme-toggle .icon-moon {
  display: none;
}

#theme-toggle:hover {
  color: var(--color-accent);
}

#theme-toggle:hover span.fontawesome-inline-svg {
  transform: scale(1.1);
}

html[data-theme="light"] #theme-toggle .icon-moon {
  display: inline;
}

html[data-theme="dark"] #theme-toggle .icon-sun {
  display: inline;
}

/* BLOG POST LIST PAGE */
section.flex-article-list {
  margin: 3em 0;
}

section.flex-article-list > h4 {
  margin: 1em 0;
  font-weight: bold;
}

section.flex-article-list > div.single-post {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0.6em 0;
}

section.flex-article-list time {
  font-family: monospace;
  color: var(--color-text-muted);
  font-size: 0.875em;
  margin-left: 2em;
  white-space: nowrap;
  width: min-content;
}

section.flex-article-list aside {
  font-size: 0.8em;
}

section.flex-article-list a {
  color: var(--color-text) !important;
}

/* Homepage */
h1.hello {
  text-align: center;
  margin: 3em;
  font-size: 3em;
}

div.hero {
  font-size: 4em;
  text-align: center;
}

/* Lists */
li {
  margin: 0.25em 0;
}

ol > li {
  list-style: decimal;
  margin-left: 2em;
}

ul > li {
  list-style: disc;
  margin-left: 2em;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0;
}

/* PAGE METADATA */
div.page-metadata {
  display: flex;
  flex-flow: row wrap;
  column-gap: 20px;
  row-gap: 5px;
  font-size: 0.9em;
  color: var(--color-text-nav);
  line-height: 1.8;
  margin-top: 0.4em;
}

div.page-metadata .page-tags {
  display: inline;
}

div.page-metadata .page-tags a {
  color: var(--color-text-nav);
}

div.page-metadata .tag-section svg {
  top: 0.25em;
  margin-right: 0.1em;
}

/* DISQUS */
#disqus_thread {
  overflow: hidden;
}

#disqus_thread iframe {
  margin-bottom: -54px;
}

.sidenote {
  box-sizing: border-box;
}

.sidenote-checkbox {
  display: none;
}

.sidenote-content {
  font-size: 80%;
  position: relative;
  margin: 0px;
  color: var(--color-text-nav);
}

.sidenote-content > a.footnote-backref {
  display: none;
}

/* Sidenote counter */
body {
  counter-reset: sidenote-counter;
}

.sidenote {
  counter-increment: sidenote-counter;
}

/* Counter in the main body. */
.sidenote-label::after {
  content: counter(sidenote-counter);
  vertical-align: super;
  margin: 0 0.1em;
  font-size: 0.7em;
}

/* Counter before the sidenote in the margin. */
.sidenote-content::before {
  content: counter(sidenote-counter) ".";
  position: relative;
  vertical-align: baseline;
  padding-right: 0.1em;
  font-size: 0.9em;
}

div.footnotes {
  display: none;
}

@media (max-width: 1399px) {
  .sidenote-label {
    cursor: pointer;
    color: var(--color-accent);
  }
  .sidenote-content {
    float: left;
    margin: 1em;
    display: none;
  }
  .sidenote-checkbox:checked ~ .sidenote-content {
    display: block;
    left: 0;
    right: 0;
  }
}

@media (min-width: 1400px) {
  .sidenote-content {
    float: right;
    clear: right;
    width: 280px;
    margin-right: -300px;
    padding: 5px;
    border-radius: 5x;
  }
  .sidenote-label:hover ~ .sidenote-content {
    background-color: var(--color-highlight);
  }
  .sidenote:hover {
    background-color: var(--color-highlight);
  }
}

:root,
html[data-theme="light"] {
  /* Background */
  /* PreWrapper */
  /* Other */
  /* Error */
  /* CodeLine */
  /* LineLink */
  /* LineTableTD */
  /* LineTable */
  /* LineHighlight */
  /* LineNumbersTable */
  /* LineNumbers */
  /* Line */
  /* Keyword */
  /* KeywordConstant */
  /* KeywordDeclaration */
  /* KeywordNamespace */
  /* KeywordPseudo */
  /* KeywordReserved */
  /* KeywordType */
  /* Name */
  /* NameAttribute */
  /* NameClass */
  /* NameConstant */
  /* NameDecorator */
  /* NameEntity */
  /* NameException */
  /* NameLabel */
  /* NameNamespace */
  /* NameOther */
  /* NameProperty */
  /* NameTag */
  /* NameBuiltin */
  /* NameBuiltinPseudo */
  /* NameVariable */
  /* NameVariableClass */
  /* NameVariableGlobal */
  /* NameVariableInstance */
  /* NameVariableMagic */
  /* NameFunction */
  /* NameFunctionMagic */
  /* Literal */
  /* LiteralDate */
  /* LiteralString */
  /* LiteralStringAffix */
  /* LiteralStringBacktick */
  /* LiteralStringChar */
  /* LiteralStringDelimiter */
  /* LiteralStringDoc */
  /* LiteralStringDouble */
  /* LiteralStringEscape */
  /* LiteralStringHeredoc */
  /* LiteralStringInterpol */
  /* LiteralStringOther */
  /* LiteralStringRegex */
  /* LiteralStringSingle */
  /* LiteralStringSymbol */
  /* LiteralNumber */
  /* LiteralNumberBin */
  /* LiteralNumberFloat */
  /* LiteralNumberHex */
  /* LiteralNumberInteger */
  /* LiteralNumberIntegerLong */
  /* LiteralNumberOct */
  /* Operator */
  /* OperatorWord */
  /* Punctuation */
  /* Comment */
  /* CommentHashbang */
  /* CommentMultiline */
  /* CommentSingle */
  /* CommentSpecial */
  /* CommentPreproc */
  /* CommentPreprocFile */
  /* Generic */
  /* GenericDeleted */
  /* GenericEmph */
  /* GenericError */
  /* GenericHeading */
  /* GenericInserted */
  /* GenericOutput */
  /* GenericPrompt */
  /* GenericStrong */
  /* GenericSubheading */
  /* GenericTraceback */
  /* GenericUnderline */
  /* TextWhitespace */
}

:root .bg,
html[data-theme="light"] .bg {
  background-color: #fff;
}

:root .chroma,
html[data-theme="light"] .chroma {
  background-color: #fff;
}

:root .chroma .err,
html[data-theme="light"] .chroma .err {
  color: #f6f8fa;
  background-color: #82071e;
}

:root .chroma .lnlinks,
html[data-theme="light"] .chroma .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit;
}

:root .chroma .lntd,
html[data-theme="light"] .chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;
}

:root .chroma .lntable,
html[data-theme="light"] .chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

:root .chroma .hl,
html[data-theme="light"] .chroma .hl {
  background-color: #e5e5e5;
}

:root .chroma .lnt,
html[data-theme="light"] .chroma .lnt {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #7f7f7f;
}

:root .chroma .ln,
html[data-theme="light"] .chroma .ln {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #7f7f7f;
}

:root .chroma .line,
html[data-theme="light"] .chroma .line {
  display: flex;
}

:root .chroma .k,
html[data-theme="light"] .chroma .k {
  color: #cf222e;
}

:root .chroma .kc,
html[data-theme="light"] .chroma .kc {
  color: #cf222e;
}

:root .chroma .kd,
html[data-theme="light"] .chroma .kd {
  color: #cf222e;
}

:root .chroma .kn,
html[data-theme="light"] .chroma .kn {
  color: #cf222e;
}

:root .chroma .kp,
html[data-theme="light"] .chroma .kp {
  color: #cf222e;
}

:root .chroma .kr,
html[data-theme="light"] .chroma .kr {
  color: #cf222e;
}

:root .chroma .kt,
html[data-theme="light"] .chroma .kt {
  color: #cf222e;
}

:root .chroma .na,
html[data-theme="light"] .chroma .na {
  color: #1f2328;
}

:root .chroma .nc,
html[data-theme="light"] .chroma .nc {
  color: #1f2328;
}

:root .chroma .no,
html[data-theme="light"] .chroma .no {
  color: #0550ae;
}

:root .chroma .nd,
html[data-theme="light"] .chroma .nd {
  color: #0550ae;
}

:root .chroma .ni,
html[data-theme="light"] .chroma .ni {
  color: #6639ba;
}

:root .chroma .nl,
html[data-theme="light"] .chroma .nl {
  color: #900;
  font-weight: bold;
}

:root .chroma .nn,
html[data-theme="light"] .chroma .nn {
  color: #24292e;
}

:root .chroma .nx,
html[data-theme="light"] .chroma .nx {
  color: #1f2328;
}

:root .chroma .nt,
html[data-theme="light"] .chroma .nt {
  color: #0550ae;
}

:root .chroma .nb,
html[data-theme="light"] .chroma .nb {
  color: #6639ba;
}

:root .chroma .bp,
html[data-theme="light"] .chroma .bp {
  color: #6a737d;
}

:root .chroma .nv,
html[data-theme="light"] .chroma .nv {
  color: #953800;
}

:root .chroma .vc,
html[data-theme="light"] .chroma .vc {
  color: #953800;
}

:root .chroma .vg,
html[data-theme="light"] .chroma .vg {
  color: #953800;
}

:root .chroma .vi,
html[data-theme="light"] .chroma .vi {
  color: #953800;
}

:root .chroma .vm,
html[data-theme="light"] .chroma .vm {
  color: #953800;
}

:root .chroma .nf,
html[data-theme="light"] .chroma .nf {
  color: #6639ba;
}

:root .chroma .fm,
html[data-theme="light"] .chroma .fm {
  color: #6639ba;
}

:root .chroma .s,
html[data-theme="light"] .chroma .s {
  color: #0a3069;
}

:root .chroma .sa,
html[data-theme="light"] .chroma .sa {
  color: #0a3069;
}

:root .chroma .sb,
html[data-theme="light"] .chroma .sb {
  color: #0a3069;
}

:root .chroma .sc,
html[data-theme="light"] .chroma .sc {
  color: #0a3069;
}

:root .chroma .dl,
html[data-theme="light"] .chroma .dl {
  color: #0a3069;
}

:root .chroma .sd,
html[data-theme="light"] .chroma .sd {
  color: #0a3069;
}

:root .chroma .s2,
html[data-theme="light"] .chroma .s2 {
  color: #0a3069;
}

:root .chroma .se,
html[data-theme="light"] .chroma .se {
  color: #0a3069;
}

:root .chroma .sh,
html[data-theme="light"] .chroma .sh {
  color: #0a3069;
}

:root .chroma .si,
html[data-theme="light"] .chroma .si {
  color: #0a3069;
}

:root .chroma .sx,
html[data-theme="light"] .chroma .sx {
  color: #0a3069;
}

:root .chroma .sr,
html[data-theme="light"] .chroma .sr {
  color: #0a3069;
}

:root .chroma .s1,
html[data-theme="light"] .chroma .s1 {
  color: #0a3069;
}

:root .chroma .ss,
html[data-theme="light"] .chroma .ss {
  color: #032f62;
}

:root .chroma .m,
html[data-theme="light"] .chroma .m {
  color: #0550ae;
}

:root .chroma .mb,
html[data-theme="light"] .chroma .mb {
  color: #0550ae;
}

:root .chroma .mf,
html[data-theme="light"] .chroma .mf {
  color: #0550ae;
}

:root .chroma .mh,
html[data-theme="light"] .chroma .mh {
  color: #0550ae;
}

:root .chroma .mi,
html[data-theme="light"] .chroma .mi {
  color: #0550ae;
}

:root .chroma .il,
html[data-theme="light"] .chroma .il {
  color: #0550ae;
}

:root .chroma .mo,
html[data-theme="light"] .chroma .mo {
  color: #0550ae;
}

:root .chroma .o,
html[data-theme="light"] .chroma .o {
  color: #0550ae;
}

:root .chroma .ow,
html[data-theme="light"] .chroma .ow {
  color: #0550ae;
}

:root .chroma .p,
html[data-theme="light"] .chroma .p {
  color: #1f2328;
}

:root .chroma .c,
html[data-theme="light"] .chroma .c {
  color: #57606a;
}

:root .chroma .ch,
html[data-theme="light"] .chroma .ch {
  color: #57606a;
}

:root .chroma .cm,
html[data-theme="light"] .chroma .cm {
  color: #57606a;
}

:root .chroma .c1,
html[data-theme="light"] .chroma .c1 {
  color: #57606a;
}

:root .chroma .cs,
html[data-theme="light"] .chroma .cs {
  color: #57606a;
}

:root .chroma .cp,
html[data-theme="light"] .chroma .cp {
  color: #57606a;
}

:root .chroma .cpf,
html[data-theme="light"] .chroma .cpf {
  color: #57606a;
}

:root .chroma .gd,
html[data-theme="light"] .chroma .gd {
  color: #82071e;
  background-color: #ffebe9;
}

:root .chroma .ge,
html[data-theme="light"] .chroma .ge {
  color: #1f2328;
}

:root .chroma .gi,
html[data-theme="light"] .chroma .gi {
  color: #116329;
  background-color: #dafbe1;
}

:root .chroma .go,
html[data-theme="light"] .chroma .go {
  color: #1f2328;
}

:root .chroma .gl,
html[data-theme="light"] .chroma .gl {
  text-decoration: underline;
}

:root .chroma .w,
html[data-theme="light"] .chroma .w {
  color: #fff;
}

html[data-theme="dark"] {
  /* Background */
  /* PreWrapper */
  /* Other */
  /* Error */
  /* CodeLine */
  /* LineLink */
  /* LineTableTD */
  /* LineTable */
  /* LineHighlight */
  /* LineNumbersTable */
  /* LineNumbers */
  /* Line */
  /* Keyword */
  /* KeywordConstant */
  /* KeywordDeclaration */
  /* KeywordNamespace */
  /* KeywordPseudo */
  /* KeywordReserved */
  /* KeywordType */
  /* Name */
  /* NameAttribute */
  /* NameClass */
  /* NameConstant */
  /* NameDecorator */
  /* NameEntity */
  /* NameException */
  /* NameLabel */
  /* NameNamespace */
  /* NameOther */
  /* NameProperty */
  /* NameTag */
  /* NameBuiltin */
  /* NameBuiltinPseudo */
  /* NameVariable */
  /* NameVariableClass */
  /* NameVariableGlobal */
  /* NameVariableInstance */
  /* NameVariableMagic */
  /* NameFunction */
  /* NameFunctionMagic */
  /* Literal */
  /* LiteralDate */
  /* LiteralString */
  /* LiteralStringAffix */
  /* LiteralStringBacktick */
  /* LiteralStringChar */
  /* LiteralStringDelimiter */
  /* LiteralStringDoc */
  /* LiteralStringDouble */
  /* LiteralStringEscape */
  /* LiteralStringHeredoc */
  /* LiteralStringInterpol */
  /* LiteralStringOther */
  /* LiteralStringRegex */
  /* LiteralStringSingle */
  /* LiteralStringSymbol */
  /* LiteralNumber */
  /* LiteralNumberBin */
  /* LiteralNumberFloat */
  /* LiteralNumberHex */
  /* LiteralNumberInteger */
  /* LiteralNumberIntegerLong */
  /* LiteralNumberOct */
  /* Operator */
  /* OperatorWord */
  /* Punctuation */
  /* Comment */
  /* CommentHashbang */
  /* CommentMultiline */
  /* CommentSingle */
  /* CommentSpecial */
  /* CommentPreproc */
  /* CommentPreprocFile */
  /* Generic */
  /* GenericDeleted */
  /* GenericEmph */
  /* GenericError */
  /* GenericHeading */
  /* GenericInserted */
  /* GenericOutput */
  /* GenericPrompt */
  /* GenericStrong */
  /* GenericSubheading */
  /* GenericTraceback */
  /* GenericUnderline */
  /* TextWhitespace */
}

html[data-theme="dark"] .bg {
  color: #bbc3d4;
  background-color: #242933;
}

html[data-theme="dark"] .chroma {
  color: #bbc3d4;
  background-color: #242933;
}

html[data-theme="dark"] .chroma .err {
  color: #c5727a;
}

html[data-theme="dark"] .chroma .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit;
}

html[data-theme="dark"] .chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;
}

html[data-theme="dark"] .chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

html[data-theme="dark"] .chroma .hl {
  background-color: #393e47;
}

html[data-theme="dark"] .chroma .lnt {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #5d616a;
}

html[data-theme="dark"] .chroma .ln {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #5d616a;
}

html[data-theme="dark"] .chroma .line {
  display: flex;
}

html[data-theme="dark"] .chroma .k {
  color: #d08770;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .kc {
  color: #d08770;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .kd {
  color: #d08770;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .kn {
  color: #d08770;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .kp {
  color: #d08770;
}

html[data-theme="dark"] .chroma .kr {
  color: #d08770;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .kt {
  color: #d08770;
}

html[data-theme="dark"] .chroma .na {
  color: #8fbcbb;
}

html[data-theme="dark"] .chroma .nc {
  color: #8fbcbb;
}

html[data-theme="dark"] .chroma .no {
  color: #8fbcbb;
}

html[data-theme="dark"] .chroma .nd {
  color: #d08770;
}

html[data-theme="dark"] .chroma .ni {
  color: #d08770;
}

html[data-theme="dark"] .chroma .ne {
  color: #c5727a;
}

html[data-theme="dark"] .chroma .nl {
  color: #8fbcbb;
}

html[data-theme="dark"] .chroma .nn {
  color: #8fbcbb;
}

html[data-theme="dark"] .chroma .py {
  color: #8fbcbb;
}

html[data-theme="dark"] .chroma .nt {
  color: #5e81ac;
}

html[data-theme="dark"] .chroma .nb {
  color: #5e81ac;
}

html[data-theme="dark"] .chroma .bp {
  color: #5e81ac;
}

html[data-theme="dark"] .chroma .nf {
  color: #88c0d0;
}

html[data-theme="dark"] .chroma .fm {
  color: #88c0d0;
}

html[data-theme="dark"] .chroma .s {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .sa {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .sb {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .sc {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .dl {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .sd {
  color: #4c566a;
}

html[data-theme="dark"] .chroma .s2 {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .se {
  color: #ebcb8b;
}

html[data-theme="dark"] .chroma .sh {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .si {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .sx {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .sr {
  color: #ebcb8b;
}

html[data-theme="dark"] .chroma .s1 {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .ss {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .m {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .mb {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .mf {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .mh {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .mi {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .il {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .mo {
  color: #b48ead;
}

html[data-theme="dark"] .chroma .o {
  color: #5e81ac;
}

html[data-theme="dark"] .chroma .ow {
  color: #5e81ac;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .p {
  color: #eceff4;
}

html[data-theme="dark"] .chroma .c {
  color: #4c566a;
  font-style: italic;
}

html[data-theme="dark"] .chroma .ch {
  color: #4c566a;
  font-style: italic;
}

html[data-theme="dark"] .chroma .cm {
  color: #4c566a;
  font-style: italic;
}

html[data-theme="dark"] .chroma .c1 {
  color: #4c566a;
  font-style: italic;
}

html[data-theme="dark"] .chroma .cs {
  color: #4c566a;
  font-style: italic;
}

html[data-theme="dark"] .chroma .cp {
  color: #5e81ac;
  font-style: italic;
}

html[data-theme="dark"] .chroma .cpf {
  color: #5e81ac;
  font-style: italic;
}

html[data-theme="dark"] .chroma .gd {
  color: #c5727a;
}

html[data-theme="dark"] .chroma .ge {
  font-style: italic;
}

html[data-theme="dark"] .chroma .gr {
  color: #c5727a;
}

html[data-theme="dark"] .chroma .gh {
  color: #88c0d0;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .gi {
  color: #a3be8c;
}

html[data-theme="dark"] .chroma .gp {
  color: #1e222a;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .gs {
  font-weight: bold;
}

html[data-theme="dark"] .chroma .gu {
  color: #88c0d0;
  font-weight: bold;
}

html[data-theme="dark"] .chroma .gt {
  color: #c5727a;
}

/*# sourceMappingURL=main.css.map */