html {
  height: 100%;
}

body {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
  min-height: 100%;
}

pre, code {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
}

h3 {
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
}

h2, h3, h4, h5 {
  margin-top: 1.5em;
}

hr {
  margin: 1em 0;
}

p {
  margin: 1.25em 0;
}

li {
  margin: 0.4em 0;
}

.w {
  max-width: 720px;
  margin: 0 auto;
  padding: 4em 2em;
}

@media screen and (max-width: 600px) {
  .w {
    padding: 2em 1.25em;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table, th, td {
  border: thin solid var(--text);
  padding: 0.4em;
}

div.highlighter-rouge pre code, pre code.highlighter-rouge {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

blockquote {
  font-style: italic;
  border: none;
  border-left: 3px solid var(--links);
  padding: 0.5em 1.5em;
  margin: 1.5em 0;
  color: var(--text-secondary);
}
blockquote p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.page-content img {
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html[data-theme=dark] html, html[data-theme=dark] body {
  --headings: #74c0fc;
  --links: #91A7FF;
  --highlight: #41C7C7;
  --bg: #1a1b26;
  --bg-secondary: #2a2b3d;
  --text: #adb5bd;
  --text-secondary: #9CA3AF;
  --code-text: #91A7FF;
  --share-text: #C4C4C4;
  --border: rgba(255,255,255,0.08);
}

html[data-theme=light] html, html[data-theme=light] body {
  --bg: #FAFAFA;
  --bg-secondary: #f3f4f6;
  --headings: #1e293b;
  --text: #374151;
  --text-secondary: #6b7280;
  --links: #6366f1;
  --highlight: #FFECB2;
  --code-text: #9D174D;
  --share-text: #999;
  --border: rgba(0,0,0,0.08);
}

@media (prefers-color-scheme: dark) {
  body[data-theme=auto] html, body[data-theme=auto] body {
    --headings: #74c0fc;
    --links: #91A7FF;
    --highlight: #41C7C7;
    --bg: #1a1b26;
    --bg-secondary: #2a2b3d;
    --text: #adb5bd;
    --text-secondary: #9CA3AF;
    --code-text: #91A7FF;
    --share-text: #C4C4C4;
    --border: rgba(255,255,255,0.08);
  }
}
@media (prefers-color-scheme: light) {
  body[data-theme=auto] html, body[data-theme=auto] body {
    --bg: #FAFAFA;
    --bg-secondary: #f3f4f6;
    --headings: #1e293b;
    --text: #374151;
    --text-secondary: #6b7280;
    --links: #6366f1;
    --highlight: #FFECB2;
    --code-text: #9D174D;
    --share-text: #999;
    --border: rgba(0,0,0,0.08);
  }
}
html, body {
  background-color: var(--bg);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--headings);
  font-family: "Inter", -apple-system, "avenir next", avenir, roboto, noto, ubuntu, "helvetica neue", helvetica, sans-serif;
}

p, strong, b, em, small, li, hr, table, figcaption {
  color: var(--text);
}

.highlight, pre code, blockquote {
  border-radius: 0.5em;
}

blockquote {
  background-color: var(--bg-secondary);
}

a {
  color: var(--links);
}

*:target {
  background-color: var(--bg-secondary);
}

@media (prefers-reduced-motion: no-preference) {
  html.transition,
  html.transition *,
  html.transition *:before,
  html.transition *:after {
    transition: all 250ms !important;
    transition-delay: 0 !important;
  }
}
noscript .theme-toggle {
  display: none;
}

.theme-toggle {
  color: var(--text);
  background-color: transparent;
  padding: 4px;
  cursor: pointer;
  margin: 1em;
  position: fixed;
  right: 0;
  top: 0;
  border: 2px transparent solid;
  outline: none;
}

.theme-toggle:hover {
  color: var(--links);
  outline: none;
}

.theme-toggle:focus {
  outline: none;
}

@media screen and (max-width: 600px) {
  .theme-toggle {
    margin: 0.5em;
  }
}
.dashed {
  border-top: 1px var(--text) dashed;
  margin: 0.5em 0;
}

mark {
  padding: 0.4em;
  background-color: var(--highlight);
  font-size: 0.6em;
  letter-spacing: 1px;
}

.post-date {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.7em;
  font-family: "JetBrains Mono", "Courier New", monospace;
}

.home-date {
  font-family: "JetBrains Mono", "Courier New", monospace;
}

.post-list-item a {
  text-decoration: none;
}

.text-bold {
  font-weight: bold;
}

.text-upcase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

p code, li code {
  background-color: var(--bg-secondary);
  padding: 0.2rem 0.4rem;
  color: var(--code-text);
  font-weight: bold;
  border-radius: 0.25em;
}

.code-copy {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  padding: 0.2em 0.6em;
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.25em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

div.highlighter-rouge:hover .code-copy {
  opacity: 1;
}

.code-copy:hover {
  color: var(--links);
}

@media screen and (max-width: 600px) {
  .code-copy {
    opacity: 1;
  }
}
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.back-link:hover {
  color: var(--links);
}
@media screen and (max-width: 600px) {
  .back-link {
    width: 36px;
    height: 36px;
  }
}

.post-title {
  margin-bottom: -1.5rem;
}

.project-title {
  margin-bottom: 0.8rem;
}

.credits {
  font-size: 0.8em;
  color: var(--text);
  margin: 8em auto -4em auto;
  text-align: center;
}
.credits a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
}
.credits a:hover {
  color: var(--links);
}

.markdown-alert {
  font-style: normal;
  padding: 0.5em 1em;
  margin: 1em 0;
  border: none;
  border-left: 4px solid;
  border-radius: 0.25em;
  background-color: var(--bg-secondary);
}
.markdown-alert p {
  color: var(--text);
}
.markdown-alert .markdown-alert-title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  font-size: 0.9em;
  margin: 0.4em 0;
}
.markdown-alert .markdown-alert-title svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
}

.markdown-alert-note {
  border-left-color: var(--alert-note, #4493f8);
}
.markdown-alert-note .markdown-alert-title {
  color: var(--alert-note, #4493f8);
}

.markdown-alert-tip {
  border-left-color: var(--alert-tip, #3fb950);
}
.markdown-alert-tip .markdown-alert-title {
  color: var(--alert-tip, #3fb950);
}

.markdown-alert-important {
  border-left-color: var(--alert-important, #a371f7);
}
.markdown-alert-important .markdown-alert-title {
  color: var(--alert-important, #a371f7);
}

.markdown-alert-warning {
  border-left-color: var(--alert-warning, #d29922);
}
.markdown-alert-warning .markdown-alert-title {
  color: var(--alert-warning, #d29922);
}

.markdown-alert-caution {
  border-left-color: var(--alert-caution, #f85149);
}
.markdown-alert-caution .markdown-alert-title {
  color: var(--alert-caution, #f85149);
}

.tag {
  font-family: "JetBrains Mono", "Courier New", monospace;
  color: var(--text-secondary);
  padding: 0.4em 1em;
  margin-right: 0.5em;
  border-radius: 1em;
  background-color: var(--bg-secondary);
  font-size: 0.7em;
  font-weight: bold;
  text-transform: lowercase;
  text-decoration: none;
  display: inline-block;
}
.tag:hover {
  color: var(--links);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 1px solid var(--border);
  font-size: 0.9em;
}
.post-nav a {
  color: var(--links);
  text-decoration: none;
  max-width: 45%;
}
.post-nav a:hover {
  text-decoration: underline;
}
.post-nav .post-nav-next {
  margin-left: auto;
  text-align: right;
}

@media screen and (max-width: 600px) {
  .post-nav {
    flex-direction: column;
    gap: 1em;
  }
  .post-nav a {
    max-width: 100%;
  }
  .post-nav .post-nav-next {
    text-align: left;
  }
}
.toc {
  background-color: var(--bg-secondary);
  border-radius: 0.5em;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  font-size: 0.9em;
}
.toc summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--headings);
  margin-bottom: 0.5em;
}
.toc ul {
  margin: 0;
  padding-left: 1.5em;
}
.toc li {
  margin: 0.3em 0;
}
.toc a {
  color: var(--text);
  text-decoration: none;
}
.toc a:hover {
  color: var(--links);
}
.toc .toc-sub {
  padding-left: 1em;
}

@media (prefers-reduced-motion: no-preference) {
  .page-content a:not(.tag):not(.card a) {
    text-decoration: none;
    background-image: linear-gradient(var(--links), var(--links));
    background-size: 0% 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
  }
  .page-content a:not(.tag):not(.card a):hover {
    background-size: 100% 1px;
  }
  .page-content {
    animation: fadeIn 0.4s ease-out;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
::selection {
  background: var(--highlight);
  color: var(--headings);
}

html[data-theme=dark] {
  scrollbar-color: var(--bg-secondary) var(--bg);
}

ul.horizontal-list {
  display: flex;
  margin-top: 0em;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
  font-family: "Inter", -apple-system, "avenir next", avenir, sans-serif;
  gap: 0.8em;
}
ul.horizontal-list li {
  display: inline;
}
ul.horizontal-list li a {
  text-decoration: none;
  font-weight: normal;
}
ul.horizontal-list li:not(.card) {
  margin-right: 1em;
}

.card {
  padding: 1em;
  border: 1px var(--text) solid;
  width: calc(33.333% - 0.6em);
  box-sizing: border-box;
  height: auto;
  text-align: center;
  font-size: 1em;
  align-items: center;
  background-color: var(--bg-secondary);
  border-radius: 0.5em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card .header {
  color: var(--links);
}
.card .body {
  font-size: 0.8em;
}
.card hr {
  margin: 0.5em 0;
}

/* Responsive cards - one column layout on small screens */
@media screen and (max-width: 600px) {
  ul.horizontal-list li.card {
    width: 100%;
    display: block;
  }
  ul.horizontal-list li.card a, ul.horizontal-list li.card .header {
    font-size: 1em;
  }
  .card:hover {
    transform: none;
    box-shadow: none;
  }
}
html[data-theme=light] .highlight .hll,
body[data-theme=auto] .highlight .hll {
  background-color: #ffffcc;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight {
  background: #f6f8fa;
  color: #24292f;
}
html[data-theme=light] .highlight .c,
body[data-theme=auto] .highlight .c {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment */ }
html[data-theme=light] .highlight .err,
body[data-theme=auto] .highlight .err {
  color: #cb2431;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Error */ }
html[data-theme=light] .highlight .k,
body[data-theme=auto] .highlight .k {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword */ }
html[data-theme=light] .highlight .l,
body[data-theme=auto] .highlight .l {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal */ }
html[data-theme=light] .highlight .n,
body[data-theme=auto] .highlight .n {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name */ }
html[data-theme=light] .highlight .o,
body[data-theme=auto] .highlight .o {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Operator */ }
html[data-theme=light] .highlight .p,
body[data-theme=auto] .highlight .p {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Punctuation */ }
html[data-theme=light] .highlight .ch,
body[data-theme=auto] .highlight .ch {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment.Hashbang */ }
html[data-theme=light] .highlight .cm,
body[data-theme=auto] .highlight .cm {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment.Multiline */ }
html[data-theme=light] .highlight .cp,
body[data-theme=auto] .highlight .cp {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment.Preproc */ }
html[data-theme=light] .highlight .cpf,
body[data-theme=auto] .highlight .cpf {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment.PreprocFile */ }
html[data-theme=light] .highlight .c1,
body[data-theme=auto] .highlight .c1 {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment.Single */ }
html[data-theme=light] .highlight .cs,
body[data-theme=auto] .highlight .cs {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Comment.Special */ }
html[data-theme=light] .highlight .gd,
body[data-theme=auto] .highlight .gd {
  color: #cb2431;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Deleted */ }
html[data-theme=light] .highlight .ge,
body[data-theme=auto] .highlight .ge {
  font-style: italic;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Emph */ }
html[data-theme=light] .highlight .gh,
body[data-theme=auto] .highlight .gh {
  color: #24292f;
  font-weight: bold;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Heading */ }
html[data-theme=light] .highlight .gi,
body[data-theme=auto] .highlight .gi {
  color: #22863a;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Inserted */ }
html[data-theme=light] .highlight .gp,
body[data-theme=auto] .highlight .gp {
  color: #6a737d;
  font-weight: bold;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Prompt */ }
html[data-theme=light] .highlight .gs,
body[data-theme=auto] .highlight .gs {
  font-weight: bold;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Strong */ }
html[data-theme=light] .highlight .gu,
body[data-theme=auto] .highlight .gu {
  color: #6f42c1;
  font-weight: bold;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Generic.Subheading */ }
html[data-theme=light] .highlight .kc,
body[data-theme=auto] .highlight .kc {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword.Constant */ }
html[data-theme=light] .highlight .kd,
body[data-theme=auto] .highlight .kd {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword.Declaration */ }
html[data-theme=light] .highlight .kn,
body[data-theme=auto] .highlight .kn {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword.Namespace */ }
html[data-theme=light] .highlight .kp,
body[data-theme=auto] .highlight .kp {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword.Pseudo */ }
html[data-theme=light] .highlight .kr,
body[data-theme=auto] .highlight .kr {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword.Reserved */ }
html[data-theme=light] .highlight .kt,
body[data-theme=auto] .highlight .kt {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Keyword.Type */ }
html[data-theme=light] .highlight .ld,
body[data-theme=auto] .highlight .ld {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Date */ }
html[data-theme=light] .highlight .m,
body[data-theme=auto] .highlight .m {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number */ }
html[data-theme=light] .highlight .s,
body[data-theme=auto] .highlight .s {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String */ }
html[data-theme=light] .highlight .na,
body[data-theme=auto] .highlight .na {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Attribute */ }
html[data-theme=light] .highlight .nb,
body[data-theme=auto] .highlight .nb {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Builtin */ }
html[data-theme=light] .highlight .nc,
body[data-theme=auto] .highlight .nc {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Class */ }
html[data-theme=light] .highlight .no,
body[data-theme=auto] .highlight .no {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Constant */ }
html[data-theme=light] .highlight .nd,
body[data-theme=auto] .highlight .nd {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Decorator */ }
html[data-theme=light] .highlight .ni,
body[data-theme=auto] .highlight .ni {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Entity */ }
html[data-theme=light] .highlight .ne,
body[data-theme=auto] .highlight .ne {
  color: #cb2431;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Exception */ }
html[data-theme=light] .highlight .nf,
body[data-theme=auto] .highlight .nf {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Function */ }
html[data-theme=light] .highlight .nl,
body[data-theme=auto] .highlight .nl {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Label */ }
html[data-theme=light] .highlight .nn,
body[data-theme=auto] .highlight .nn {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Namespace */ }
html[data-theme=light] .highlight .nx,
body[data-theme=auto] .highlight .nx {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Other */ }
html[data-theme=light] .highlight .py,
body[data-theme=auto] .highlight .py {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Property */ }
html[data-theme=light] .highlight .nt,
body[data-theme=auto] .highlight .nt {
  color: #22863a;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Tag */ }
html[data-theme=light] .highlight .nv,
body[data-theme=auto] .highlight .nv {
  color: #e36209;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Variable */ }
html[data-theme=light] .highlight .ow,
body[data-theme=auto] .highlight .ow {
  color: #d73a49;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Operator.Word */ }
html[data-theme=light] .highlight .w,
body[data-theme=auto] .highlight .w {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Text.Whitespace */ }
html[data-theme=light] .highlight .mb,
body[data-theme=auto] .highlight .mb {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number.Bin */ }
html[data-theme=light] .highlight .mf,
body[data-theme=auto] .highlight .mf {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number.Float */ }
html[data-theme=light] .highlight .mh,
body[data-theme=auto] .highlight .mh {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number.Hex */ }
html[data-theme=light] .highlight .mi,
body[data-theme=auto] .highlight .mi {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number.Integer */ }
html[data-theme=light] .highlight .mo,
body[data-theme=auto] .highlight .mo {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number.Oct */ }
html[data-theme=light] .highlight .sa,
body[data-theme=auto] .highlight .sa {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Affix */ }
html[data-theme=light] .highlight .sb,
body[data-theme=auto] .highlight .sb {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Backtick */ }
html[data-theme=light] .highlight .sc,
body[data-theme=auto] .highlight .sc {
  color: #24292f;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Char */ }
html[data-theme=light] .highlight .dl,
body[data-theme=auto] .highlight .dl {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Delimiter */ }
html[data-theme=light] .highlight .sd,
body[data-theme=auto] .highlight .sd {
  color: #6a737d;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Doc */ }
html[data-theme=light] .highlight .s2,
body[data-theme=auto] .highlight .s2 {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Double */ }
html[data-theme=light] .highlight .se,
body[data-theme=auto] .highlight .se {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Escape */ }
html[data-theme=light] .highlight .sh,
body[data-theme=auto] .highlight .sh {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Heredoc */ }
html[data-theme=light] .highlight .si,
body[data-theme=auto] .highlight .si {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Interpol */ }
html[data-theme=light] .highlight .sx,
body[data-theme=auto] .highlight .sx {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Other */ }
html[data-theme=light] .highlight .sr,
body[data-theme=auto] .highlight .sr {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Regex */ }
html[data-theme=light] .highlight .s1,
body[data-theme=auto] .highlight .s1 {
  color: #032f62;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Single */ }
html[data-theme=light] .highlight .ss,
body[data-theme=auto] .highlight .ss {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.String.Symbol */ }
html[data-theme=light] .highlight .bp,
body[data-theme=auto] .highlight .bp {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Builtin.Pseudo */ }
html[data-theme=light] .highlight .fm,
body[data-theme=auto] .highlight .fm {
  color: #6f42c1;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Function.Magic */ }
html[data-theme=light] .highlight .vc,
body[data-theme=auto] .highlight .vc {
  color: #e36209;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Variable.Class */ }
html[data-theme=light] .highlight .vg,
body[data-theme=auto] .highlight .vg {
  color: #e36209;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Variable.Global */ }
html[data-theme=light] .highlight .vi,
body[data-theme=auto] .highlight .vi {
  color: #e36209;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Variable.Instance */ }
html[data-theme=light] .highlight .vm,
body[data-theme=auto] .highlight .vm {
  color: #e36209;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Name.Variable.Magic */ }
html[data-theme=light] .highlight .il,
body[data-theme=auto] .highlight .il {
  color: #005cc5;
}
html[data-theme=light] .highlight,
body[data-theme=auto] .highlight { /* Literal.Number.Integer.Long */ }

@media (prefers-color-scheme: light) {
  body[data-theme=auto] .highlight .hll {
    background-color: #ffffcc;
  }
  body[data-theme=auto] .highlight {
    background: #f6f8fa;
    color: #24292f;
  }
  body[data-theme=auto] .highlight .c {
    color: #6a737d;
  }
  body[data-theme=auto] .highlight .err {
    color: #cb2431;
  }
  body[data-theme=auto] .highlight .k {
    color: #d73a49;
  }
  body[data-theme=auto] .highlight .l {
    color: #005cc5;
  }
  body[data-theme=auto] .highlight .n {
    color: #24292f;
  }
  body[data-theme=auto] .highlight .o {
    color: #d73a49;
  }
  body[data-theme=auto] .highlight .p {
    color: #24292f;
  }
  body[data-theme=auto] .highlight .s {
    color: #032f62;
  }
  body[data-theme=auto] .highlight .na {
    color: #005cc5;
  }
  body[data-theme=auto] .highlight .nc {
    color: #6f42c1;
  }
  body[data-theme=auto] .highlight .nf {
    color: #6f42c1;
  }
  body[data-theme=auto] .highlight .nt {
    color: #22863a;
  }
  body[data-theme=auto] .highlight .nv {
    color: #e36209;
  }
  body[data-theme=auto] .highlight .m {
    color: #005cc5;
  }
}
.highlight .hll {
  background-color: #515151;
}

.highlight {
  background: #1A1F35;
  color: #f2f0ec;
}

.highlight .c {
  color: #747369;
} /* Comment */
.highlight .err {
  color: #f2777a;
} /* Error */
.highlight .k {
  color: #cc99cc;
} /* Keyword */
.highlight .l {
  color: #f99157;
} /* Literal */
.highlight .n {
  color: #f2f0ec;
} /* Name */
.highlight .o {
  color: #66cccc;
} /* Operator */
.highlight .p {
  color: #f2f0ec;
} /* Punctuation */
.highlight .ch {
  color: #747369;
} /* Comment.Hashbang */
.highlight .cm {
  color: #747369;
} /* Comment.Multiline */
.highlight .cp {
  color: #747369;
} /* Comment.Preproc */
.highlight .cpf {
  color: #747369;
} /* Comment.PreprocFile */
.highlight .c1 {
  color: #747369;
} /* Comment.Single */
.highlight .cs {
  color: #747369;
} /* Comment.Special */
.highlight .gd {
  color: #f2777a;
} /* Generic.Deleted */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gh {
  color: #f2f0ec;
  font-weight: bold;
} /* Generic.Heading */
.highlight .gi {
  color: #99cc99;
} /* Generic.Inserted */
.highlight .gp {
  color: #747369;
  font-weight: bold;
} /* Generic.Prompt */
.highlight .gs {
  font-weight: bold;
} /* Generic.Strong */
.highlight .gu {
  color: #66cccc;
  font-weight: bold;
} /* Generic.Subheading */
.highlight .kc {
  color: #cc99cc;
} /* Keyword.Constant */
.highlight .kd {
  color: #cc99cc;
} /* Keyword.Declaration */
.highlight .kn {
  color: #66cccc;
} /* Keyword.Namespace */
.highlight .kp {
  color: #cc99cc;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #cc99cc;
} /* Keyword.Reserved */
.highlight .kt {
  color: #ffcc66;
} /* Keyword.Type */
.highlight .ld {
  color: #99cc99;
} /* Literal.Date */
.highlight .m {
  color: #f99157;
} /* Literal.Number */
.highlight .s {
  color: #99cc99;
} /* Literal.String */
.highlight .na {
  color: #6699cc;
} /* Name.Attribute */
.highlight .nb {
  color: #f2f0ec;
} /* Name.Builtin */
.highlight .nc {
  color: #ffcc66;
} /* Name.Class */
.highlight .no {
  color: #f2777a;
} /* Name.Constant */
.highlight .nd {
  color: #66cccc;
} /* Name.Decorator */
.highlight .ni {
  color: #f2f0ec;
} /* Name.Entity */
.highlight .ne {
  color: #f2777a;
} /* Name.Exception */
.highlight .nf {
  color: #6699cc;
} /* Name.Function */
.highlight .nl {
  color: #f2f0ec;
} /* Name.Label */
.highlight .nn {
  color: #ffcc66;
} /* Name.Namespace */
.highlight .nx {
  color: #6699cc;
} /* Name.Other */
.highlight .py {
  color: #f2f0ec;
} /* Name.Property */
.highlight .nt {
  color: #66cccc;
} /* Name.Tag */
.highlight .nv {
  color: #f2777a;
} /* Name.Variable */
.highlight .ow {
  color: #66cccc;
} /* Operator.Word */
.highlight .w {
  color: #f2f0ec;
} /* Text.Whitespace */
.highlight .mb {
  color: #f99157;
} /* Literal.Number.Bin */
.highlight .mf {
  color: #f99157;
} /* Literal.Number.Float */
.highlight .mh {
  color: #f99157;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #f99157;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #f99157;
} /* Literal.Number.Oct */
.highlight .sa {
  color: #99cc99;
} /* Literal.String.Affix */
.highlight .sb {
  color: #99cc99;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #f2f0ec;
} /* Literal.String.Char */
.highlight .dl {
  color: #99cc99;
} /* Literal.String.Delimiter */
.highlight .sd {
  color: #747369;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #99cc99;
} /* Literal.String.Double */
.highlight .se {
  color: #f99157;
} /* Literal.String.Escape */
.highlight .sh {
  color: #99cc99;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #f99157;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #99cc99;
} /* Literal.String.Other */
.highlight .sr {
  color: #99cc99;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #99cc99;
} /* Literal.String.Single */
.highlight .ss {
  color: #99cc99;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #f2f0ec;
} /* Name.Builtin.Pseudo */
.highlight .fm {
  color: #6699cc;
} /* Name.Function.Magic */
.highlight .vc {
  color: #f2777a;
} /* Name.Variable.Class */
.highlight .vg {
  color: #f2777a;
} /* Name.Variable.Global */
.highlight .vi {
  color: #f2777a;
} /* Name.Variable.Instance */
.highlight .vm {
  color: #f2777a;
} /* Name.Variable.Magic */
.highlight .il {
  color: #f99157;
} /* Literal.Number.Integer.Long */

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