/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.vh {
  clip-path: inset(100%) !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.display\:block {
  display: block !important;
}

.filter\:invert {
  filter: invert(100%) !important;
}

.text-align\:center {
  text-align: center !important;
}

.text-align\:left {
  text-align: left !important;
}

.font-size\:body {
  font-size: 1rem !important;
}

.font-size\:small {
  font-size: 0.75rem !important;
}

.font-size\:1 {
  font-size: var(--s1) !important;
}

.max-width\:quarter {
  max-width: calc(var(--measure) / 4) !important;
}

.height\:100\% {
  height: 100%;
}

.measure\:short {
  max-width: 40ch;
}

:root {
  --font-plain: Helvetica, Arial, sans-serif;
  --font-serif: Georgia, serif;
  --font-special: Helvetica, sans-serif;
  --font-mono: Menlo, Courier, Courier New, Andale Mono, monospace;
  --color-dark: #050505;
  --color-darkish: #404040;
  --color-lightish: #e6e6e6;
  --color-light: #fafafa;
  --color-mid: grey;
  --color-green: #003430;
  --color-beige: #fefce5;
  --ratio: 1.4;
  --s-5: calc(var(--s-4) / var(--ratio));
  --s-4: calc(var(--s-3) / var(--ratio));
  --s-3: calc(var(--s-2) / var(--ratio));
  --s-2: calc(var(--s-1) / var(--ratio));
  --s-1: calc(var(--s0) / var(--ratio));
  --s0: clamp(1rem, 1rem + 0vw, 1rem);
  --s1: calc(var(--s0) * var(--ratio));
  --s2: calc(var(--s1) * var(--ratio));
  --s3: calc(var(--s2) * var(--ratio));
  --s4: calc(var(--s3) * var(--ratio));
  --s5: calc(var(--s4) * var(--ratio));
  --measure: 65ch;
  --line-height: var(--ratio);
  --line-height-small: calc(0.8 * var(--ratio));
  --border-thin: var(--s-5);
  --border-thick: var(--s-2);
  line-height: var(--ratio);
  font-size: calc(0.5vw + 1em);
  font-family: var(--font-plain);
  background-color: #282828;
  color: white;
}

*, :after, :before {
  box-sizing: border-box;
  background-color: inherit;
  font-family: inherit;
  color: inherit;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

[hidden] {
  display: none;
}

footer, header, main, nav {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
:focus {
  outline: var(--border-thin) solid var(--color-mid);
  outline-offset: var(--border-thin);
}

[tabindex="-1"]:focus {
  outline: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  hyphens: auto;
  line-height: var(--line-height-small);
}

.h1, h1 {
  font-size: var(--s4);
}

.h2, h2 {
  font-size: var(--s3);
}

.h3, h3 {
  font-size: var(--s2);
}

.h4, h4 {
  font-size: var(--s1);
}

.h5, h5 {
  font-size: var(--s0);
}

aside > ol, aside > ul, main > ol, main > ul {
  padding-left: 2em;
}

hr {
  padding: var(--border-thin) 0 0;
  border-left-width: 0;
  border-bottom-width: var(--border-thin);
  border-right-width: 0;
  border-top-width: var(--border-thin);
}

button, pre {
  outline: var(--border-thin) solid transparent;
  outline-offset: calc(var(--border-thin) * -1);
}

header {
  padding: var(--s5) var(--s1) var(--s1);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

main {
  line-height: 1.25;
}
main > * {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
}
main > * + * {
  margin-top: var(--s1);
}
main p + p {
  margin-top: var(--s-1);
}

@media (min-width: 720px) {
  main > * {
    width: 35rem;
  }
}
footer {
  padding: var(--s5) var(--s1);
}

footer main > * + * {
  margin-top: var(--s0);
}

.code-heading {
  color: #26b79f;
  font-family: "JetBrains Mono", serif;
  margin-bottom: 1rem;
}

.color--white {
  color: #fff;
}

.color--green {
  color: #26b79f;
}

.color--red {
  color: #EF596F;
}

.cluster {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--s0) var(--s1);
}

.cluster--right {
  justify-content: space-between;
}

.cover {
  display: flex;
  flex-direction: column;
  padding: var(--s1);
}
.cover > * {
  margin-block: 1rem;
}
.cover > :first-child:not(h1) {
  margin-block-start: 0;
}
.cover > :last-child:not(h1) {
  margin-block-end: 0;
}
.cover > h1 {
  margin-block: auto;
}

.cover--center {
  align-items: center;
  justify-content: center;
}

.container {
  container-name: myContainer;
  container-type: inline-size;
}

.center {
  box-sizing: content-box;
  margin-inline: auto;
  max-inline-size: var(--measure);
  padding-inline-start: var(--s1);
  padding-inline-end: var(--s1);
}

.center--intrinsic {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.switcher {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
}
.switcher > * {
  flex-grow: 1;
  flex-basis: calc((30rem - 100%) * 999);
}
.switcher > :nth-last-child(n+4),
.switcher > :nth-last-child(n+4) ~ * {
  flex-basis: 100%;
}

.with-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
}
.with-sidebar > :last-child {
  flex-grow: 1;
}
.with-sidebar > :first-child {
  flex-basis: 0;
  flex-grow: 999;
  min-inline-size: 50%;
}

.icon {
  height: 2cap;
  width: 2cap;
}

.with-icon {
  display: inline-flex;
  align-items: baseline;
}
.with-icon .icon {
  margin-inline-end: 1rem;
}

.stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.stack * {
  margin-block: 0;
}
.stack * + * {
  margin-block-start: var(--s0);
}

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