:root {
  --color-weight-1: 82%;
  --color-weight-2: 72%;
  --color-weight-3: 62%;
  --color-weight-4: 52%;
  --color-weight-5: 42%;
  --color-weight-6: 32%;
  --color-weight-7: 22%;
  --color-weight-8: 12%;
  --color-weight-9: 2%;
  --color-hs-pink: 310 100%;
  --color-hs-yellow: 61 100%;
  --color-hs-purple: 258 47%;
  --color-hs-primary: var(--color-hs-purple);
  --color-hs-accent: var(--color-hs-pink);
  --color-hs-highlight: var(--color-hs-yellow);
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-1: hsl(var(--color-hs-primary) var(--color-weight-1));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-1: hsl(var(--color-hs-accent) var(--color-weight-1));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-1: hsl(var(--color-hs-highlight) var(--color-weight-1));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-2: hsl(var(--color-hs-primary) var(--color-weight-2));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-2: hsl(var(--color-hs-accent) var(--color-weight-2));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-2: hsl(var(--color-hs-highlight) var(--color-weight-2));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-3: hsl(var(--color-hs-primary) var(--color-weight-3));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-3: hsl(var(--color-hs-accent) var(--color-weight-3));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-3: hsl(var(--color-hs-highlight) var(--color-weight-3));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-4: hsl(var(--color-hs-primary) var(--color-weight-4));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-4: hsl(var(--color-hs-accent) var(--color-weight-4));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-4: hsl(var(--color-hs-highlight) var(--color-weight-4));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-5: hsl(var(--color-hs-primary) var(--color-weight-5));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-5: hsl(var(--color-hs-accent) var(--color-weight-5));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-5: hsl(var(--color-hs-highlight) var(--color-weight-5));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-6: hsl(var(--color-hs-primary) var(--color-weight-6));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-6: hsl(var(--color-hs-accent) var(--color-weight-6));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-6: hsl(var(--color-hs-highlight) var(--color-weight-6));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-7: hsl(var(--color-hs-primary) var(--color-weight-7));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-7: hsl(var(--color-hs-accent) var(--color-weight-7));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-7: hsl(var(--color-hs-highlight) var(--color-weight-7));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-8: hsl(var(--color-hs-primary) var(--color-weight-8));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-8: hsl(var(--color-hs-accent) var(--color-weight-8));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-8: hsl(var(--color-hs-highlight) var(--color-weight-8));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-primary-9: hsl(var(--color-hs-primary) var(--color-weight-9));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-accent-9: hsl(var(--color-hs-accent) var(--color-weight-9));
  /* stylelint-disable-next-line custom-property-pattern */
  --color-highlight-9: hsl(var(--color-hs-highlight) var(--color-weight-9));
  --color-dark: var(--color-primary-9);
  --color-accent: var(--color-accent-4);
  --gradient-slinkity: hsl(var(--color-hs-accent) 50%), hsl(var(--color-hs-highlight) 50%);
  --content-max-width: 1200px;
  --rounded-corners: 5px;
  --shadow-heavy: 0 4px 14px #000;
  --default-padding: clamp(1em, 5vh, 3em) clamp(1em, 4vw, 2em);
  --animation-base-duration: 275ms;
  --animation-base-easing: ease-in-out;
  --h1: 64px;
  --h2: 48px;
  --h3: 36px;
  --h4: 24px;
  --pro-hacker-font: consolas, monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --base-font:
    "Atkinson",
    "Open Sans",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    roboto,
    oxygen,
    ubuntu,
    cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-family: var(--base-font);
}

* {
  box-sizing: border-box;
}

body {
  background: var(--color-primary-9);
  background-image: linear-gradient(var(--color-primary-7) 1px, transparent 0), linear-gradient(90deg, var(--color-primary-7) 1px, transparent 0);
  background-size: var(--grid-size, 2rem) var(--grid-size, 2rem);
  margin: 0;
  color: white;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 25%, var(--color-primary-9) 50%);
  background-size: 100% 200%;
  animation: fade-in-grid 0.8s linear forwards;
}
@keyframes fade-in-grid {
  from {
    background-position-y: 100%;
  }
  to {
    background-position-y: 0%;
  }
}
body :where(code, pre) {
  font-family: var(--pro-hacker-font);
  font-size: 0.8em;
  padding: 0.1rem;
  border-radius: 2px;
  border: 1px solid var(--color-primary-7);
  background-image: linear-gradient(to bottom right, var(--color-primary-9), var(--bg, var(--color-primary-7)));
  box-shadow: var(--shadow-heavy);
  color: var(--color-primary-1);
  text-shadow: 0 0 4px var(--color-primary-4);
  box-decoration-break: clone;
}
body :where(code, pre):focus {
  box-shadow: 0 4px 14px var(--color-accent-4);
}
body.no-scroll {
  height: 100vh;
  height: -webkit-fill-avilable;
  overflow: hidden;
}

main {
  margin: 1rem 0;
}

:is(ul, ol) > li {
  margin-block-end: 1rem;
}

h1 {
  margin-block-end: 0;
}
h1 > svg {
  max-width: 95vw;
  height: auto;
}

h2 {
  margin-block-start: 1em;
  margin-block-end: 0;
  scroll-margin-top: 1rem;
  line-height: 1.25;
}
h2 + .header-anchor {
  font-size: 1.5em;
  margin-block-start: 1em;
  margin-block-end: 0;
  padding-inline: 0.25em;
}
@supports not (padding-inline: 0.25em) {
  h2 + .header-anchor {
    padding-inline-start: 0.25em;
    padding-inline-end: 0.25em;
  }
}

hr {
  border: 1px solid var(--color-primary-7);
}

blockquote {
  --bg: var(--color-primary-7);
  --padding: clamp(1rem, 2vmax, 1.5em);
  --gradient-accent-width: 0.5rem;
  margin-inline: 0;
  background: var(--bg);
  position: relative;
  padding: var(--padding);
  border-radius: 2px;
  overflow: hidden;
  padding-inline-start: calc(var(--padding) + var(--gradient-accent-width));
}
blockquote a,
blockquote a:visited {
  color: var(--color-accent-4);
  padding: 2px;
  transition-property: background-position-x, color, opacity;
  transition-duration: var(--animation-base-duration);
  transition-timing-function: var(--animation-base-easing);
  border-radius: 2px;
  background: linear-gradient(80deg, var(--bg, var(--color-primary-8)) 33%, var(--gradient-slinkity));
  background-size: 300% 100%;
  background-position-x: 0;
}
blockquote a:where(:hover, :focus),
blockquote a:visited:where(:hover, :focus) {
  background-position-x: 100%;
  color: var(--color-dark);
  text-decoration: none;
}
blockquote > p {
  margin-block: 0;
}
blockquote > * + * {
  margin-block-start: 0;
}
blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--gradient-accent-width);
  background: linear-gradient(hsl(var(--color-hs-accent) 50%), hsl(var(--color-hs-highlight) 50%));
}
@media (forced-colors: active) {
  blockquote::before {
    background-color: InfoBackground;
  }
}
@media (forced-colors: active) {
  blockquote {
    outline: 2px solid InfoBackground;
  }
}

.skip-to-main {
  color: var(--color-accent-4);
  padding: 2px;
  transition-property: background-position-x, color, opacity;
  transition-duration: var(--animation-base-duration);
  transition-timing-function: var(--animation-base-easing);
  border-radius: 2px;
  background: linear-gradient(80deg, var(--bg, var(--color-primary-8)) 33%, var(--gradient-slinkity));
  background-size: 300% 100%;
  background-position-x: 0;
  display: inline-block;
  margin-top: 12px;
  position: absolute;
  margin-left: 20px;
  padding: 8px 14px;
  text-decoration: none;
  --bg: var(--color-accent-4);
  color: var(--color-dark);
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}
.skip-to-main:where(:hover, :focus) {
  background-position-x: 100%;
  color: var(--color-dark);
  text-decoration: none;
}
.skip-to-main:focus,
.skip-to-main :focus-within {
  opacity: 1;
  pointer-events: all;
}

.center-content {
  display: grid;
  place-content: center;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max-width, unset);
  gap: var(--gap, 2rem);
}

@media (max-width: 500px) {
  .hide__mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .hide__tablet {
    display: none;
  }
}

.demo-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 5px solid transparent;
  border-image: linear-gradient(var(--gradient-slinkity)) 1;
}
@supports not (aspect-ratio: auto) {
  .demo-embed {
    height: 400px;
  }
  @media (max-width: breakpoint(mobile)) {
    .demo-embed {
      height: 240px;
    }
  }
}

.contributor {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contributor *:not(.contributor__title) {
  position: static;
}
.contributor__container {
  flex-basis: 170px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 2em;
}
.contributor__image {
  max-width: 150px;
  height: auto;
  border-radius: 100%;
  overflow: hidden;
}
@media (forced-colors: active) {
  .contributor__image {
    border: 2px solid transparent;
  }
}
.contributor__username {
  text-align: center;
  font-size: 1.17em;
  display: block;
  font-weight: bold;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
}
.contributor__username::before {
  content: "";
  position: absolute;
  inset: 0;
}
.contributor__title {
  position: absolute;
  top: 120px;
  right: 0;
  text-transform: uppercase;
  color: var(--color-dark);
  font-size: 0.7rem;
  padding: 5px 10px;
  background: linear-gradient(80deg, var(--gradient-slinkity));
  font-family: var(--pro-hacker-font);
  border-radius: 2px;
}

.sr-only:not(:where(:focus, :active, :focus-within)) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.heading-wrapper {
  display: flex;
  gap: 1em;
  align-items: center;
}
.heading-wrapper:is(:hover, :focus-within) .header-anchor {
  opacity: 1;
}
.heading-wrapper .header-anchor {
  opacity: 0;
}

.external-link {
  display: flex;
  gap: 0.5rem;
}
.external-link__icon > svg {
  height: 0.8em;
  width: 0.8em;
}
@media (forced-colors: active) {
  .external-link__icon > svg {
    color: linktext;
  }
}

.site-footer {
  padding: 1rem;
}
.site-footer a,
.site-footer a:visited {
  color: var(--color-accent-4);
  padding: 2px;
  transition-property: background-position-x, color, opacity;
  transition-duration: var(--animation-base-duration);
  transition-timing-function: var(--animation-base-easing);
  border-radius: 2px;
  background: linear-gradient(80deg, var(--bg, var(--color-primary-8)) 33%, var(--gradient-slinkity));
  background-size: 300% 100%;
  background-position-x: 0;
}
.site-footer a:where(:hover, :focus),
.site-footer a:visited:where(:hover, :focus) {
  background-position-x: 100%;
  color: var(--color-dark);
  text-decoration: none;
}
.site-footer__content {
  text-align: center;
  font-style: italic;
  font-size: 0.8rem;
  margin: auto;
  max-width: var(--content-max-width);
  --bg: transparent;
}

.toc-container {
  --gap: 0.25em;
  --spacing: 0.75em;
  --border-width: 2px;
  --border-style: var(--border-width) solid var(--color-primary-6);
}
.toc-container :is(a, a:visited) {
  display: block;
  text-decoration: none;
}
.toc-container :is(a, a:visited):not(:focus, :hover) {
  color: var(--link-color, #fff);
}
.toc__label {
  color: var(--color-primary-2);
  font-family: var(--pro-hacker-font);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75em;
  margin-block-start: 0;
  margin-block-end: 1em;
}
.toc__overview-link {
  display: block;
  margin-inline-start: calc(var(--spacing) + var(--border-width));
  position: relative;
}
.toc__overview-link::before {
  content: "";
  position: absolute;
  height: 100%;
  left: calc((var(--spacing) + var(--border-width)) * -1);
  top: 0;
  border-inline-start: var(--border-style);
}
.toc ol {
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.toc li {
  margin-block-end: 0;
  padding-inline-start: var(--spacing);
  line-height: 1.25;
}
.toc li::marker {
  font-size: 0;
}
.toc > ol {
  margin-block: 0;
  border-inline-start: var(--border-style);
}
.toc > ol > li > ol {
  margin-block: var(--spacing);
  font-size: 0.9rem;
}
.toc > ol > li > ol a,
.toc > ol > li > ol a:visited {
  --link-color: var(--color-primary-1);
}/*
 * Synthwave '84 Theme originally by Robb Owen [@Robb0wen] for Visual Studio Code
 * Demo: https://marc.dev/demo/prism-synthwave84
 *
 * Ported for PrismJS by Marc Backes [@themarcba]
 */

code[class*='language-'],
pre[class*='language-'] {
  color: #f92aad;
  text-shadow: 0 0 2px #100c0f, 0 0 5px #dc078e33, 0 0 10px #fff3;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;

  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;

  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*='language-'] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}

/* Plaintext code blocks */
:is(code,pre)[class='language-plaintext'] {
  color: #fff5f6;
}

:not(pre) > code[class*='language-'],
pre[class*='language-'] {
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, #2a2139 75%, #34294f);
}

/* Inline code */
:not(pre) > code[class*='language-'] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #8e8e8e;
}

.token.punctuation {
  color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.number,
.token.unit,
.token.hexcode,
.token.deleted {
  color: #e2777a;
}

.token.property,
.token.selector {
  color: #72f1b8;
  text-shadow: 0 0 2px #100c0f, 0 0 10px #257c5575, 0 0 35px #21272475;
}

.token.function-name {
  color: #6196cc;
}

.token.boolean,
.token.selector .token.id,
.token.function {
  color: #fdfdfd;
  text-shadow: 0 0 2px #001716, 0 0 3px #03edf975, 0 0 5px #03edf975,
    0 0 8px #03edf975;
}

.token.class-name {
  color: #fff5f6;
  text-shadow: 0 0 2px #000, 0 0 10px #fc1f2c75, 0 0 5px #fc1f2c75,
    0 0 25px #fc1f2c75;
}

.token.constant,
.token.symbol {
  color: #f92aad;
  text-shadow: 0 0 2px #100c0f, 0 0 5px #dc078e33, 0 0 10px #fff3;
}

.token.important,
.token.atrule,
.token.keyword,
.token.selector .token.class,
.token.builtin {
  color: #f4eee4;
  text-shadow: 0 0 2px #393a33, 0 0 8px #f39f0575, 0 0 2px #f39f0575;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
  color: #f87c32;
}

.token.operator,
.token.entity,
.token.url {
  color: #67cdcc;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.inserted {
  color: green;
}
