@charset "UTF-8";
/*!
 * Cupcake 7.0.0 (Funfetti)
 * Copyright 2023 Mina Markham
 * https://mina.codes
 * Licensed under MIT https://github.com/minamarkham/cupcake/blob/main/LICENSE
 * Released under the MIT License
 */
:root {
  --font-family-sans-serif: "Satoshi", sans-serif;
  --font-family-monospace: "CaskaydiaCove NF", "Dank Mono", monospace;
  --font-family-system: system-ui, -apple-system, sans-serif;
  --pink: hsl(340, 100%, 60%);
  --teal: hsl(180, 100%, 25%);
  --cyan: hsl(176, 69%, 58%);
  --magenta: hsl(337, 80%, 54%);
  --fuschia: hsl(330, 100%, 50%);
  --dark-fuschia: hsl(330, 100%, 45%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --off-white: hsl(0, 0%, 95%);
  --off-black: hsl(0, 0%, 10%);
  --gray-90: hsl(0, 0%, 90%);
  --gray-80: hsl(0, 0%, 80%);
  --gray-70: hsl(0, 0%, 70%);
  --gray-60: hsl(0, 0%, 60%);
  --gray-50: hsl(0, 0%, 50%);
  --gray-40: hsl(0, 0%, 40%);
  --gray-30: hsl(0, 0%, 30%);
  --gray-20: hsl(0, 0%, 20%);
  --color-primary: var(--pink);
  --color-secondary: var(--cyan);
  --color-accent: var(--gray-80);
  --color-background: var(--white);
  --color-background-tint: var(--gray-80);
  --color-foreground: var(--gray-80);
  --color-text: var(--off-black);
  --color-link: var(--color-primary);
  --color-primary-transparent: hsla(var(--pink), 0.5);
  --code-bg: var(--off-black);
  --button-bg: var(--fuschia);
  --button-bg-active: var(--dark-fuschia);
  --background-pattern: radial-gradient(
  	var(--color-background-tint) 1px,
  	var(--color-background) 1px
  );
  --kbd-color-background: var(--off-white);
  --kbd-color-border: var(--gray-80);
  --kbd-color-text: var(--off-black);
  --aspect-ratio: 16 / 9;
}

/*
* A Modern CSS Reset
* https://piccalil.li/blog/a-modern-css-reset/
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 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 root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

/* 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;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus {
  outline: 2px dashed var(--color-primary);
  outline-offset: 0.25rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-family: var(--font-family-sans-serif);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-color: var(--color-background);
  background-image: var(--background-pattern);
  background-size: 20px 20px;
  background-attachment: fixed;
  position: relative;
  font-weight: 400;
  overflow-x: hidden;
}

main {
  padding: 0 5vw;
  flex: 1;
  position: relative;
}
main:focus {
  outline: none;
}
@media screen and (min-width: 940px) {
  main {
    margin-top: 10rem;
  }
}

.special-button, a[download], .offline-btn {
  text-transform: uppercase;
  outline: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3 ease;
  cursor: pointer;
  padding: 0.5rem 1rem;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  letter-spacing: 1px;
  font-weight: 500;
  display: inline-block;
}

.offline-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 13rem;
  height: auto;
  font-size: 1rem;
  margin-top: 1rem;
}
.offline-btn .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.625rem;
  border: 1px solid var(--color-primary);
}
.offline-btn .cache-icon {
  position: absolute;
  top: 5px;
  left: 9px;
  font-size: 1.25rem;
}
.offline-btn .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0;
  margin: 0 0 0 1.85rem;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.offline-btn:hover, .offline-btn:focus {
  background: none;
}
.offline-btn:hover .circle, .offline-btn:focus .circle {
  width: 100%;
}
.offline-btn:hover .button-text, .offline-btn:focus .button-text {
  color: var(--color-primary);
}

a[download] {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 23rem;
  height: auto;
  font-size: 1rem;
}
a[download] .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.625rem;
  border: 1px solid var(--color-primary);
}
a[download] .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--color-primary);
}
a[download] .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.35rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
a[download] .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--color-primary);
  border-right: 0.125rem solid var(--color-primary);
  transform: rotate(45deg);
}
a[download] .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0;
  margin: 0 0 0 1.85rem;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
a[download]:hover, a[download]:focus {
  background: none;
}
a[download]:hover .circle, a[download]:focus .circle {
  width: 100%;
}
a[download]:hover .icon.arrow, a[download]:focus .icon.arrow {
  background: var(--color-primary);
  transform: translate(0.7rem, 0);
}
a[download]:hover .button-text, a[download]:focus .button-text {
  color: var(--color-primary);
}

.special-button {
  font-size: 1em;
  padding: 0.5rem 1rem;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}
.special-button::before, .special-button::after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.special-button::before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, transparent 20%, var(--button-bg) 20%, transparent 30%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--button-bg) 15%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.special-button::after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--button-bg) 15%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%), radial-gradient(circle, var(--button-bg) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.special-button:active {
  color: var(--white);
  transform: scale(0.9);
  background-color: var(--button-bg-active);
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.special-button.animate::before {
  display: block;
  animation: top-bubbles ease-in-out 0.75s forwards;
}
.special-button.animate::after {
  display: block;
  animation: bottom-bubbles ease-in-out 0.75s forwards;
}

dl {
  display: grid;
  margin: 0;
}
@media screen and (min-width: 768px) {
  dl {
    grid-template-columns: minmax(max-content, 150px) 1fr;
    column-gap: 2vw;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px) {
  dt {
    text-align: right;
  }
}

details {
  position: relative;
}
details > div {
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  height: 100%;
  user-select: none;
  padding: 0 20px;
  line-height: 1.5;
}
details > div > p {
  flex: 1;
}
details > div > img {
  align-self: flex-start;
  max-width: 100%;
  margin-top: 20px;
}
details p {
  margin: 1rem;
}
details[open] > summary {
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  details[open] > div > p {
    margin: 0;
    padding-left: 20px;
  }
}

summary {
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  border-bottom: 1px solid;
  user-select: none;
}

table {
  border: 0;
  font-size: 1rem;
}
table br {
  display: none;
}

thead {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

tr {
  border: 1px solid var(--color-text);
  display: block;
  margin-bottom: 0.625em;
}

td {
  border-bottom: 1px solid var(--color-text);
  display: block;
  min-height: 30px;
  text-align: right;
  padding: 0.25em 0.5em;
}
td::before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
}
td:last-child {
  border-bottom: 0;
}

@media screen and (min-width: 800px) {
  table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }
  table br {
    display: block;
  }
  thead {
    position: static;
    text-align: left;
    display: table-header-group;
  }
  caption {
    margin: 0.5em 0 0.75em;
  }
  tr {
    border: 0;
    border-bottom: 1px solid var(--color-text);
    padding: 0.35em;
    margin: 0;
    display: table-row;
  }
  td {
    border: none;
  }
  td::before {
    display: none;
  }
  th,
  td {
    padding: 0.625em;
    text-align: left;
    display: table-cell;
  }
}
caption {
  text-align: left;
  margin-bottom: 1rem;
}

embed,
iframe,
img,
video,
object {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  font-weight: 300;
  line-height: 2;
  text-align: center;
  height: auto;
  display: block;
  position: relative;
  min-height: 50px;
}
img::after {
  content: "🚫" " Broken image of " attr(alt);
  font-size: 16px;
  color: var(--color-text);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  border: 1px dashed var(--color-background-tint);
  align-items: center;
  justify-content: center;
}

figcaption {
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

code {
  background: #d8dee9;
  border-radius: 0.3em;
  color: #343d46;
  font-size: 0.875em;
  font-weight: 600;
  padding: 0.1em 0.5em;
  font-family: var(--font-family-monospace);
}

code[class*=language-],
pre[class*=language-] {
  font-family: var(--font-family-monospace);
}

pre[class*=language-] {
  padding: 1em;
  margin: 1em 0;
  background: var(--code-bg);
  border-left: 8px solid var(--color-primary);
  overflow: auto;
  border-radius: 0;
  color: var(--color-foreground);
  text-shadow: none;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  tab-size: 2;
  hyphens: none;
}

kbd {
  font-family: var(--font-family-monospace);
  background-color: var(--kbd-color-background);
  color: var(--kbd-color-text);
  border-radius: 0.25rem;
  border: 1px solid var(--kbd-color-border);
  box-shadow: 0 2px 0 1px var(--kbd-color-border);
  cursor: default;
  line-height: 1;
  text-align: center;
  padding: 2px 5px;
  position: relative;
  top: -1px;
  font-size: 0.9em;
}
kbd:hover {
  box-shadow: 0 1px 0 0.5px var(--kbd-color-border);
  top: 1px;
}

samp,
tt {
  font-family: var(--font-family-monospace);
}

hr {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: var(--black);
  text-align: center;
  height: 1.5em;
  opacity: 0.5;
}
hr::before {
  content: "";
  background: linear-gradient(to right, transparent, var(--color-background-tint), transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
hr::after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  line-height: 1.5em;
  color: var(--color-text);
  background-color: var(--color-background);
}

/* @link https://aristath.github.io/blog/typography-scales-with-css-vars */
/* @link https://moderncss.dev/generating-font-size-css-rules-and-creating-a-fluid-type-scale */
:root {
  --base-size: 1em;
  --line-height: 1.45;
  --minor-second: 1.067;
  --major-second: 1.125;
  --minor-third: 1.2;
  --major-third: 1.25;
  --perfect-fourth: 1.333;
  --augmented-fourth: 1.414;
  --perfect-fifth: 1.5;
  --golden-ratio: 1.618;
  --type-scale: var(--minor-third);
  --size-l-1: calc(1rem * var(--type-scale));
  --size-l-2: calc(var(--size-l-1) * var(--type-scale));
  --size-l-3: calc(var(--size-l-2) * var(--type-scale));
  --size-l-4: calc(var(--size-l-3) * var(--type-scale));
  --size-l-5: calc(var(--size-l-4) * var(--type-scale));
  --size-l-6: calc(var(--size-l-5) * var(--type-scale));
  --size-l-7: calc(var(--size-l-6) * var(--type-scale));
  --size-s-1: calc(1rem / var(--type-scale));
  --size-s-2: calc(var(--size-s-1) / var(--type-scale));
  --size-s-3: calc(var(--size-s-2) / var(--type-scale));
  --space-xxs: 0.5rem;
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2rem;
  --space-lg: 2.75rem;
}

body {
  font-size: var(--base-size);
}

h1 {
  font-size: var(--size-l-5);
}

h2 {
  font-size: var(--size-l-4);
}

h3 {
  font-size: var(--size-l-3);
}

h4 {
  font-size: var(--size-l-2);
}

h5 {
  font-size: var(--size-l-1);
}

h6 {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

a {
  color: var(--color-link);
  cursor: pointer;
  word-break: break-word;
  text-decoration: none;
}

blockquote {
  margin: 2rem 0;
  padding: 0;
  position: relative;
  min-width: 400px;
  max-width: 820px;
  font-size: var(--size-l-1);
  line-height: 1.4;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-fon-smoothing: grayscale;
}
blockquote p:first-of-type::before {
  content: "“";
  position: absolute;
  font-size: 2rem;
  font-family: "Arial", system-ui, -apple-system, sans-serif;
  left: -15px;
}
blockquote p:last-of-type::after {
  content: "”";
  position: absolute;
  font-size: 2rem;
  font-family: "Arial", system-ui, -apple-system, sans-serif;
  margin-left: 5px;
}
blockquote footer {
  position: relative;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 0.6em;
  letter-spacing: 1px;
  font-weight: 700;
}
blockquote footer::before {
  content: "–";
  margin-right: 0.6em;
}

li {
  padding-left: 15px;
}
li::marker {
  color: var(--color-primary);
}

ul {
  list-style: square;
  padding-left: 0;
  margin-left: 20px;
}

ol {
  counter-reset: number;
  list-style: decimal-leading-zero;
  padding-left: 0;
  margin-left: 35px;
}

.pullquote {
  max-width: 620px;
  margin: 2rem auto 4rem;
  position: relative;
}
.pullquote p {
  font-family: var(--font-family-sans-serif);
  position: relative;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
  border: 2px solid var(--white);
  border: solid 2px;
  border-radius: 20px;
  padding: 25px;
}
.pullquote p::after {
  content: "";
  position: absolute;
  border: 2px solid var(--color-primary);
  border-radius: 0 50px 0 0;
  width: 60px;
  height: 20px;
  bottom: -20px;
  left: 50px;
  border-bottom: none;
  border-left: none;
  z-index: 3;
}
.pullquote p::before {
  content: "";
  position: absolute;
  width: 80px;
  border: 6px solid var(--white);
  bottom: -3px;
  left: 50px;
  z-index: 2;
}
.pullquote cite {
  position: absolute;
  left: 144px;
  bottom: -30px;
}
.pullquote cite::before {
  content: "—";
  margin-right: 10px;
}
.pullquote cite::first-letter {
  margin-left: -12px;
}

.page-title {
  font-family: var(--font-family-monospace);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -4px;
}
.page-title::before {
  content: "/";
  color: var(--color-primary);
}

.inline-list {
  margin: 0;
}
.inline-list li {
  display: inline-block;
  padding: 0;
}
.inline-list li::before {
  display: none;
}
.inline-list li:not(:last-child)::after {
  content: ", ";
}

* + h2 {
  margin-top: var(--space-md);
}

* + h3 {
  margin-top: var(--space-lg);
}

* + :is(h4, h5, h6) {
  margin-top: var(--space-sm);
}

* + p {
  margin-top: var(--space-xs);
}

h2 + h3 {
  margin-top: var(--space-sm);
}

h3 + h4 {
  margin-top: var(--space-xs);
}

:is(h4, h5, h6) + p {
  margin-top: var(--space-xxs);
}

h1 {
  letter-spacing: -0.0125em;
  line-height: 1.2;
}

h2 {
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h3 {
  letter-spacing: -0.005em;
  line-height: 1.3;
}

h4 {
  letter-spacing: -0.0025em;
  line-height: 1.3;
}

h5 {
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

h6 {
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

p {
  letter-spacing: -0.0025em;
  line-height: 1.3;
}

.accordion-item {
  border-bottom: 1px solid var(--color-text);
}
.accordion-item[open] > summary {
  border-bottom: 1px solid var(--color-primary);
}
.accordion-item summary {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion-item summary:hover, .accordion-item summary:focus {
  cursor: pointer;
  color: var(--color-primary);
}
.accordion-item summary:hover::after, .accordion-item summary:focus::after {
  cursor: pointer;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.accordion-item summary .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion-item summary .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='20' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M25 15 L 25 35' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M15 25 L 35 25' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.accordion-item summary .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentcolor;
}
.accordion-item summary .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentcolor;
}
.accordion-item details[open] > summary .icon::after {
  width: 0;
}

a[href^="http://"],
a[href^="https://"],
a[href^="//"] {
  text-decoration-color: var(--color-link);
}

a[href^="//"]::after, a[href^="http://"]::after, a[href^="https://"]::after {
  content: "↗";
  font-family: system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 900;
  color: var(--color-link);
  padding-left: 2px;
  line-height: 0.75;
  font-size: 0.8em;
}

a[href^="http://"]:hover,
a[href^="https://"]:hover,
a[href^="//"]:hover {
  text-decoration-color: inherit;
}

a[href^="http://"]:hover::after,
a[href^="https://"]:hover::after,
a[href^="//"]:hover::after {
  color: inherit;
}

/* @link https://www.zachleat.com/web/external-link-favicons/ */
a[href^="https://www.11ty.dev"]::before,
a[href^="https://www.netlify.com"]::before,
a[href^="https://docs.netlify.com"]::before,
a[href^="https://www.twitter.com"]::before,
a[href^="https://www.instagram.com"]::before,
a[href^="https://www.youtube.com"]::before,
a[href^="https://youtube.com"]::before,
a[href^="https://github.com"]::before,
a[href^="https://gitlab.com"]::before,
a[href^="https://wikipedia.org"]::before,
a[href^="https://en.wikipedia.org"]::before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  width: 1em;
  height: 1em;
  margin: 0 0.2em;
  background-size: contain;
  background-repeat: no-repeat;
}

a[href^="https://www.11ty.dev"]::after,
a[href^="https://www.netlify.com"]::after,
a[href^="https://docs.netlify.com"]::after,
a[href^="https://www.twitter.com"]::after,
a[href^="https://www.instagram.com"]::after,
a[href^="https://youtube.com"]::after,
a[href^="https://www.youtube.com"]::after,
a[href^="https://github.com"]::after,
a[href^="https://gitlab.com"]::after,
a[href^="https://wikipedia.org"]::after,
a[href^="https://en.wikipedia.org"]::after {
  display: none;
}

a[href^="https://www.11ty.dev"]::before {
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fwww.11ty.dev%2F/");
}

a[href^="https://www.netlify.com"]::before,
a[href^="https://docs.netlify.com"]::before {
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fwww.netlify.com%2F/");
}

a[href^="https://youtube.com"]::before,
a[href^="https://www.youtube.com"]::before {
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fwww.youtube.com%2F/");
}

a[href^="https://github.com"]::before {
  border-radius: 50%; /* 5px /16 */
  background-color: var(--white);
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fgithub.com%2F/");
}

a[href^="https://gitlab.com"]::before {
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fabout.gitlab.com%2F/");
}

a[href^="https://wikipedia.org"]::before,
a[href^="https://en.wikipedia.org"]::before {
  border: 0.0625em solid rgba(0, 0, 0, 0.3); /* 1px /16 */
  border-radius: 0.125em; /* 2px /16 */
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fwww.wikipedia.org%2F/");
}

a[href^="https://www.twitter.com"]::before {
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fwww.twitter.com%2f/");
}

a[href^="https://www.instagram.com"]::before {
  background-image: url("https://avatars.mina.codes/https%3A%2F%2Fwww.instagram.com%2f/");
}

article {
  counter-reset: footnotes;
}

[aria-describedby=footnote-label] {
  counter-increment: footnotes;
  text-decoration: none;
  color: inherit;
  cursor: default;
  outline: none;
}

[aria-describedby=footnote-label]::after {
  content: "[" counter(footnotes) "]";
  vertical-align: super;
  font-size: 0.75em;
  margin-left: 2px;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
}

[aria-describedby=footnote-label]:focus::after {
  outline: thin dotted;
  outline-offset: 2px;
}

[aria-label="Back to content"] {
  font-size: 0.8em;
}

.footnotes {
  background-color: var(--color-background);
  color: var(--color-text);
  padding: 1rem;
  margin: 2rem 0;
  border: 1px solid var(--color-text);
}
.footnotes::before {
  content: "Footnotes";
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
  display: block;
  margin: 0 0 0.5rem;
}
.footnotes :target {
  background: var(--color-primary-transparent);
}
.footnotes__anchor {
  position: absolute;
  top: -200px;
}
.footnotes ol {
  margin: 0;
  padding: 0;
}
.footnotes li {
  font-weight: 400;
  line-height: 1.429;
  letter-spacing: 0;
  margin-top: 0;
  font-size: 0.875rem;
  margin-bottom: 0;
  padding-left: 2em;
  counter-increment: list;
  list-style-type: none;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footnotes li::after {
  content: counter(list);
  left: -1em;
  position: absolute;
  text-align: right;
  top: 0;
  width: 2em;
  font-weight: 700;
}

.footer {
  font-size: 0.8rem;
  padding: 3rem 6vw;
  border-top: 1px solid var(--color-background-tint);
  margin-top: 3rem;
}
.footer a {
  color: var(--color-text);
}
.footer a:hover {
  color: var(--color-link);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer__item {
  flex-basis: 50%;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.footer__item--right {
  flex-basis: 100%;
  margin-bottom: 0;
}
.footer__icon {
  display: inline-block;
}
.footer__icon + .footer__icon {
  margin-left: 1rem;
}
.footer__speedlify {
  text-decoration: none !important;
}
.footer__speedlify::after {
  display: none;
}
@media screen and (min-width: 86.563rem) {
  .footer__inner {
    flex-wrap: nowrap;
  }
  .footer__item {
    flex: 0 0 auto;
    padding-right: 2.5rem;
    margin: 0;
  }
  .footer__item--right {
    margin-left: auto;
    padding-right: 0 !important;
  }
}
@media screen and (min-width: 75rem) {
  .footer__item {
    padding-right: 4rem;
  }
}

form {
  position: relative;
  margin: 2rem 0;
}

input,
textarea {
  border: 0;
  padding: 15px;
}
input:active,
textarea:active {
  outline-color: var(--color-primary);
}

fieldset {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
}

label, legend {
  display: block;
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

input[type=text],
input[type=email],
textarea,
select {
  border: none;
  width: 100%;
  background-color: var(--off-white);
  margin-bottom: 1rem;
}

/* @link https://codepen.io/dannievinther/pen/EvVggR */
.photo__grid {
  --border-width: .24vw;
  --gutter: 2vw;
  position: relative;
  display: grid;
  grid-template-columns: 1.167fr 0.45fr 0.225fr 0.3fr 0.8fr;
  grid-template-rows: 0.44fr 0.1875fr 0.4fr;
  grid-gap: var(--gutter);
  margin-bottom: 2rem;
}
.photo__grid figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 2px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
}
@media (max-width: 420px) {
  .photo__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .photo__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px;
    grid-auto-rows: 200px;
  }
}

.photo__grid-item {
  overflow: hidden;
  background: var(--color-primary);
  position: relative;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
@media (max-width: 420px) {
  .photo__grid-item {
    grid-column-end: div 1 !important;
    grid-row: auto !important;
  }
}
@media (max-width: 600px) {
  .photo__grid-item {
    grid-column: auto !important;
    grid-row: auto !important;
    clip-path: unset !important;
  }
  .photo__grid-item:nth-child(2), .photo__grid-item:nth-child(8), .photo__grid-item:nth-child(9), .photo__grid-item:nth-child(10) {
    grid-row: auto/span 2 !important;
    width: auto;
  }
}
.photo__grid-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
  clip-path: polygon(0 0, 100% 0, 100% 66%, 0% 85%);
}
.photo__grid-item:nth-child(1) img {
  clip-path: polygon(var(--border-width) var(--border-width), calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(66% - var(--border-width)), var(--border-width) calc(85% - var(--border-width)));
}
.photo__grid-item:nth-child(1) figcaption {
  top: 10px;
  left: 20px;
  bottom: auto;
  right: auto;
}
.photo__grid-item:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1/3;
}
.photo__grid-item:nth-child(3) {
  grid-column: 4/6;
  grid-row: 1/2;
}
.photo__grid-item:nth-child(4) {
  grid-column: 1/2;
  grid-row: 2/4;
  clip-path: polygon(0 22%, 100% 4px, 100% 100%, 0% 100%);
}
.photo__grid-item:nth-child(4) img {
  clip-path: polygon(var(--border-width) calc(22% + var(--border-width)), calc(100% - var(--border-width)) 7px, calc(100% - var(--border-width)) calc(100% - var(--border-width)), var(--border-width) calc(100% - var(--border-width)));
}
.photo__grid-item:nth-child(5) {
  grid-column: 2/4;
  grid-row: 3/4;
}
.photo__grid-item:nth-child(6) {
  grid-column: 4/6;
  grid-row: 2/4;
}
.photo__grid-item:nth-child(7) {
  grid-column: 1/2;
  grid-row: 4/5;
}
.photo__grid-item:nth-child(8) {
  grid-column: 2/3;
  grid-row: 4/5;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  width: calc(100% + var(--gutter));
}
.photo__grid-item:nth-child(8) img {
  clip-path: polygon(var(--border-width) var(--border-width), calc(100% - var(--border-width)) var(--border-width), calc(88% - var(--border-width)) calc(100% - var(--border-width)), var(--border-width) calc(100% - var(--border-width)));
}
.photo__grid-item:nth-child(9) {
  grid-column: 3/5;
  grid-row: 4/5;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.photo__grid-item:nth-child(9) img {
  clip-path: polygon(calc(12% + var(--border-width)) var(--border-width), calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(100% - var(--border-width)), var(--border-width) calc(100% - var(--border-width)));
}
.photo__grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
  will-change: transform;
  clip-path: polygon(var(--border-width) var(--border-width), calc(100% - var(--border-width)) var(--border-width), calc(100% - var(--border-width)) calc(100% - var(--border-width)), var(--border-width) calc(100% - var(--border-width)));
  flex-grow: 1;
}

header {
  padding: 2rem 10vw 2rem 5vw;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 940px) {
  header {
    position: fixed;
    top: 0;
    background-color: var(--color-background);
    background-image: var(--background-pattern);
    background-size: 20px 20px;
    background-attachment: fixed;
    grid-template-columns: 30% 70%;
    z-index: 10;
  }
}
header::before {
  content: "";
  height: 10px;
  background-color: var(--color-primary);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}

.skip-link,
.visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.skip-link {
  z-index: 20;
  outline: none;
  top: 1.5rem;
  left: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  background-color: var(--color-primary);
  padding: 0.5em 1em;
  text-decoration: none;
  position: fixed;
}
.skip-link:focus {
  clip: auto;
  height: auto;
  width: auto;
}

.menu__title {
  font-size: 1rem;
  margin: 0 1rem 0 0;
  font-weight: 700;
  display: inline-block;
}

.menu__title-wrap {
  float: left;
}

.menu__links {
  align-items: center;
  text-transform: lowercase;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-background);
  background-image: var(--background-pattern);
  background-size: 20px 20px;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.menu__item {
  position: relative;
  text-transform: lowercase;
  font-size: clamp(1rem, 15vw, 10vw);
  margin-left: 2px;
  padding: 1rem;
  display: inline-block;
}
.menu__item--current {
  color: var(--color-text);
}
.menu__item::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: calc(100% - 9px);
  height: 3px;
  background: var(--color-primary);
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
  transform-origin: 0 0;
}
.menu__item:hover::after, .menu__item--current::after {
  transform: scale3d(1, 1, 1);
}
.menu__item:first-child::after {
  left: 0;
  width: 100%;
}

.menu-icon {
  cursor: pointer;
  padding: 26px 20px;
  user-select: none;
  margin: 0;
  position: fixed;
  right: 1vw;
  top: 26px;
  z-index: 3;
}

.navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.navicon:before, .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.navicon:before {
  top: 5px;
}
.navicon:after {
  top: -5px;
}

.menu-btn {
  display: none;
}
.menu-btn:checked ~ .menu__links {
  max-height: 100vh;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media screen and (min-width: 56rem) {
  main {
    padding: 0 6vw;
  }
  header {
    text-align: left;
    display: grid;
    align-content: space-between;
    width: 100%;
    padding: 2.5rem 6vw;
    grid-template-rows: auto;
  }
  .menu__title-wrap {
    display: flex;
    align-items: center;
  }
  .menu__right {
    display: flex;
    justify-self: flex-end;
  }
  .menu__info {
    margin: 0;
  }
  .menu__item {
    font-size: 1.15rem;
    padding: 0;
  }
  .menu__links {
    padding: 0;
    justify-self: end;
    clear: none;
    float: right;
    max-height: none;
    overflow: unset;
    position: relative;
    display: inline-flex;
    background-color: transparent;
    flex-direction: unset;
  }
  .menu__links li {
    float: left;
  }
  .menu-icon {
    display: none;
  }
}
.page-content {
  width: clamp(15rem, 90vw, 70rem);
  max-width: 50rem;
}

.archive {
  display: flex;
  overflow: hidden;
  position: relative;
  justify-content: center;
}

.archive__item {
  font-size: 11.5vw;
  margin: 0 1vw;
  font-weight: 900;
  line-height: 1;
}

.scroll {
  width: 100vw;
  inset-block-start: 0;
  transform: translate(-30%);
  mix-blend-mode: multiply;
  white-space: nowrap;
  font-style: italic;
  color: var(--color-text);
  margin: 4rem 0;
  font-size: 2.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll {
    animation: scroll 30s linear infinite;
  }
}
@media screen and (min-width: 45em) {
  .scroll {
    inset-block-start: 3.5rem;
  }
}

blockquote.twitter-tweet {
  padding: 1.5rem 2rem 1.5rem 6rem;
  margin-inline: auto;
  border: 2px solid var(--color-background-tint);
  border-radius: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M13.1 24.4c7.1 0 11-5.9 11-11v-.5c.8-.5 1.4-1.2 1.9-2-.7.3-1.4.5-2.2.6.8-.5 1.4-1.2 1.7-2.1-.7.4-1.6.8-2.4.9-.7-.8-1.7-1.2-2.8-1.2-2.1 0-3.9 1.7-3.9 3.9 0 .3 0 .6.1.9-3.2-.2-6-1.7-8-4-.3.5-.5 1.2-.5 1.9 0 1.3.7 2.5 1.7 3.2-.6 0-1.2-.2-1.7-.5 0 1.9 1.3 3.4 3.1 3.8-.3.1-.7.1-1 .1-.2 0-.5 0-.7-.1.5 1.5 1.9 2.6 3.6 2.7-1.3 1-3 1.6-4.8 1.6-.3 0-.6 0-.9-.1 1.6 1.3 3.6 1.9 5.8 1.9' fill='%231b9df0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem 1rem;
  background-size: 4rem 4rem;
}
blockquote.twitter-tweet p {
  line-height: 1.5;
}
blockquote.twitter-tweet p:first-of-type::before {
  display: none;
}
blockquote.twitter-tweet > * + * {
  margin-top: 1.5rem;
}

.header {
  margin-bottom: 5vw;
  font-size: clamp(1.31rem, 1.24rem + 0.37vw, 1.5rem);
  width: clamp(15rem, 90vw, 70rem);
  max-width: 50rem;
}
@media screen and (min-width: 940px) {
  .header h1 {
    margin-left: -2rem;
  }
}

.button-copy {
  right: 0;
  position: absolute;
  top: 5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.button-copy:hover, .button-copy:active, .button-copy:focus {
  background: none;
}

.📍 {
  --animate-duration: 1s;
  fill: var(--color-primary);
  animation-name: pulse;
  animation-timing-function: ease;
  animation-duration: var(--animate-duration);
  animation-iteration-count: infinite;
}

.hidden {
  display: none;
}

.embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.embed iframe,
.embed video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.arrow {
  font-size: 1.8rem;
  vertical-align: top;
  padding-right: 0.5rem;
  line-height: 1;
}

.offline-btn {
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  background: 0 0;
  border: none;
  outline: 0;
  border-bottom: 1px dashed var(--color-primary);
  padding: 0;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7em;
  background: rgba(0, 0, 0, 0.8);
}
.lightbox:target {
  display: block;
}
.lightbox span {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.u-desktop-only {
  display: none;
}
@media (min-width: 1260px) {
  .u-desktop-only {
    display: block;
  }
}

.pagination {
  padding: 30px 0;
  margin: 0;
  list-style: none;
  display: flex;
  font-weight: 600;
}
.pagination li {
  padding: 0;
}
.pagination a {
  display: inline-block;
  color: var(--color-text);
  opacity: 0.4;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  margin: auto 5px;
}
.pagination a.is-active {
  opacity: 1;
  border-bottom: 3px solid var(--color-primary);
}

.post-pagination h3 {
  line-height: 1;
  font-size: 1rem;
  margin-bottom: -6rem;
  opacity: 0.3;
}
.post-pagination svg {
  width: 20vw;
}
.post-pagination nav {
  display: flex;
  width: clamp(15rem, 90vw, 70rem);
}

.pagination-icon {
  padding-right: 25px;
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  box-sizing: content-box;
  line-height: 1;
}
.pagination-link--next .pagination-icon {
  padding-right: 0;
  padding-left: 25px;
}
.pagination-icon .caret-right-icon--small,
.pagination-icon .caret-left-icon--small {
  width: 9px;
  height: 16px;
}
.pagination-icon svg {
  stroke: var(--color-text);
  width: 100%;
  height: 100%;
  stroke-width: 1px;
  fill: transparent;
}

.pagination-link {
  text-align: left;
  display: flex;
  align-items: center;
  max-width: 50%;
  width: auto;
}
.pagination-link--prev {
  margin-left: 0;
  margin-right: auto;
}
.pagination-link--next {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.pagination-prev-next {
  display: none;
  padding: 3vw 0 0;
}

.pagination-title {
  font-weight: 500;
  font-style: italic;
}

.post {
  width: clamp(15rem, 90vw, 70rem);
  max-width: 50rem;
}
.post h1::before, .post h1::after {
  color: var(--color-background-tint);
}
.post h1::before {
  content: "/*";
  margin-left: calc(-2rem - 10px);
  margin-right: 10px;
}
.post h1::after {
  content: "*/";
  margin-left: 10px;
}

.postlist {
  list-style: none;
  padding: 0;
  margin-left: -20px;
}

.postlist-item {
  line-height: 1.8;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.post-pagination .postlist-item {
  line-height: 1;
}

.postlist-date {
  font-size: 0.6em;
  word-spacing: -0.5px;
  font-style: italic;
}
.postlist-date::before {
  content: "—";
  margin-right: 10px;
  font-size: 1.8rem;
}

.postlist-link {
  padding-right: 0.25em;
  text-underline-position: from-font;
  text-underline-offset: 0;
  text-decoration-thickness: 1px;
  position: relative;
  display: inline-block;
}
.postlist-link:visited, .postlist-link:visited * {
  color: var(--color-background-tint);
}
.postlist-link:visited span::before {
  color: var(--color-background);
}
.postlist-item-active .postlist-link {
  font-weight: bold;
}
.postlist-link span {
  position: absolute;
  left: -15px;
  top: -8px;
}
.postlist-link span::before {
  color: var(--color-primary);
  content: "∗";
}

.post-header {
  margin-bottom: 5vw;
  width: 80%;
}
.post-header h1 + h2 {
  margin-top: 0;
  font-weight: 300;
  font-style: italic;
}

.post-tag {
  text-transform: uppercase;
  font-size: 1rem;
  margin-left: 0.6667em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: inherit;
  line-height: 1.8;
}
.post-tag:visited {
  color: inherit;
}
.post-tag::before {
  content: "#";
  color: var(--color-primary);
}

.postlist-canonical {
  font-size: 1rem;
  display: block;
  margin-top: -10px;
}

.tags {
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 2rem;
}

.projectlist {
  --marquee-width: 100vw;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  -webkit-touch-callout: none;
  user-select: none;
}

.project__item {
  cursor: default;
  position: relative;
}

.project__item-link {
  display: block;
  cursor: pointer;
  position: relative;
  -webkit-text-stroke: 1px var(--color-text);
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: opacity 0.4s;
}
@media screen and (min-width: 940px) {
  .project__item-link {
    -webkit-text-stroke: 1.5px var(--color-text);
  }
}
.project__item-link:hover {
  transition-duration: 0.1s;
  opacity: 0;
}

.project__item-img {
  pointer-events: none;
  position: absolute;
  opacity: 0;
  left: 100%;
  top: 0%;
  transform: translate3d(calc(-100% - 6vw), -30%, 0) translate3d(0, 20px, 0);
  width: 30vh;
  height: 30vh;
  object-fit: cover;
  object-position: center;
}
.project__item-link:hover + .project__item-img {
  opacity: 1;
  transform: translate3d(calc(-100% - 6vw), -30%, 0) rotate3d(0, 0, 1, 4deg);
  transition: all 0.4s;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--marquee-width);
  pointer-events: none;
}
.marquee span {
  text-align: center;
  padding: 0 1vw;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: contain;
}
.t-711ty .marquee span {
  background-image: url("../images/projects/711ty.jpg");
  background-position: center;
}
.t-pantsuit .marquee span {
  background-image: url("../images/projects/hillary.gif");
}
.t-yonce .marquee span {
  background-image: url("../images/projects/yonce.jpg");
  background-size: cover;
}
.t-slack .marquee span {
  background-image: url("../images/projects/slack.png");
  background-position: center;
}
.t-memphis .marquee span {
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='70' height='70' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0,0%,100%,1)'/><path d='M-4.8 4.44L4 16.59 16.14 7.8M32 30.54l-13.23 7.07 7.06 13.23M-9 38.04l-3.81 14.5 14.5 3.81M65.22 4.44L74 16.59 86.15 7.8M61 38.04l-3.81 14.5 14.5 3.81'  stroke-linecap='square' stroke-width='1' stroke='hsla(258.5,59.4%,59.4%,1)' fill='none'/><path d='M59.71 62.88v3h3M4.84 25.54L2.87 27.8l2.26 1.97m7.65 16.4l-2.21-2.03-2.03 2.21m29.26 7.13l.56 2.95 2.95-.55'  stroke-linecap='square' stroke-width='1' stroke='hsla(339.6,82.2%,51.6%,1)' fill='none'/><path d='M58.98 27.57l-2.35-10.74-10.75 2.36M31.98-4.87l2.74 10.65 10.65-2.73M31.98 65.13l2.74 10.66 10.65-2.74'  stroke-linecap='square' stroke-width='1' stroke='hsla(198.7,97.6%,48.4%,1)' fill='none'/><path d='M8.42 62.57l6.4 2.82 2.82-6.41m33.13-15.24l-4.86-5.03-5.03 4.86m-14-19.64l4.84-5.06-5.06-4.84'  stroke-linecap='square' stroke-width='1' stroke='hsla(47,80.9%,61%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
  -webkit-text-stroke: 1.5px var(--color-text);
}
.t-formation .marquee span {
  background-image: url("../images/projects/formation.jpg");
  background-position: 0 20px;
}
.t-httbey .marquee span {
  background-image: url("../images/projects/httbey.gif");
  background-size: 200px;
  background-position: 0;
}
.t-hillary-for-america .marquee span {
  background-image: url("../images/projects/hfa.png");
  background-size: 50px;
  background-position: center;
}

.marquee span,
.project__item-link {
  font-style: italic;
  white-space: nowrap;
  font-size: 10vw;
  font-weight: 900;
  line-height: 1.15;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 5s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.1s;
}

.project__item-link:hover ~ .marquee .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}

.project {
  counter-reset: section;
}
.project__featured-image-wrapper {
  position: relative;
  --overflow: 80px;
  overflow: hidden;
  width: 100%;
  height: 30rem;
}
@media screen and (min-width: 37.5rem) {
  .project__featured-image-wrapper {
    height: 45rem;
  }
}
.project__featured-image {
  position: absolute;
  width: 100%;
  min-height: calc(100% + var(--overflow) + var(--overflow));
  object-fit: cover;
  margin-top: calc(var(--overflow) * -1);
  transform: var(--drift);
}
.project__intro {
  overflow: hidden;
  --underline-scale: 1;
}
.project__intro span:first-of-type {
  font-weight: 800;
}
@media screen and (min-width: 75rem) {
  .project__intro {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.project__intro-row {
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
}
.project__intro-row:first-of-type {
  padding-top: 0;
}
.project__intro-row::before {
  position: absolute;
  bottom: 0;
  display: none;
  width: calc(100vw - 3rem);
  height: 1px;
  margin-left: calc(50% - 50vw);
  content: "";
  transform: scaleX(var(--underline-scale));
  transform-origin: 0 0;
  background-color: currentcolor;
}
@media screen and (min-width: 75rem) {
  .project__intro-inner {
    display: grid;
    grid-column-gap: 1rem;
    grid-template-columns: repeat(16, 1fr);
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.project__title {
  max-width: 70vw;
  font-size: 5vw;
  font-weight: 300;
  line-height: 1.2;
}
@media screen and (min-width: 75rem) {
  .project__title {
    grid-column: 1/span 16;
    grid-row: span 2;
    margin-top: 0;
  }
}
@media screen and (min-width: 75rem) {
  .project__meta {
    grid-column: 12/span 5;
    text-align: right;
    grid-row: 2;
  }
}
@media screen and (min-width: 75rem) {
  .project__links {
    grid-column: 13/span 4;
    grid-row: 2;
    text-align: right;
  }
}
.project__live-link {
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-top: 1rem;
}
.project__live-link:hover {
  text-decoration: underline;
}
.project__excerpt {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 75rem) {
  .project__excerpt {
    grid-column: 1/span 8;
  }
}
.project .table-of-contents {
  grid-column: 1/span 6;
}

.next-case-study {
  position: relative;
}
.next-case-study p {
  padding: 0 20px 0 0;
  font-family: var(--font-family-monospace);
  font-style: italic;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.next-case-study p span {
  background: var(--color-background);
  padding: 0 15px 0 0;
}
.next-case-study p::after {
  border-bottom: 1px solid var(--color-accent);
  box-shadow: 0 1px 0 0 var(--color-primary);
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 95%;
  z-index: -1;
}
.next-case-study__link {
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 75rem) {
  .next-case-study__article {
    display: grid;
    grid-column-gap: 1rem;
    grid-template-columns: repeat(16, 1fr);
  }
}
.next-case-study__title a {
  color: var(--color-text);
}
@media screen and (min-width: 75rem) {
  .next-case-study__title {
    grid-column: 1/span 16;
  }
}
.next-case-study__image {
  width: 100%;
  height: 21rem;
  object-fit: cover;
}

.project__section-anchor {
  display: none;
}

.table-of-contents {
  max-width: 27.5rem;
  text-transform: uppercase;
  --label-opacity: 1;
  --label-position: 0;
}
.table-of-contents__list {
  padding: 0;
  list-style-type: none;
  counter-reset: toc;
  margin-left: 0;
}
.table-of-contents__list::before {
  font-size: 0.75rem;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
  content: "Table Of Contents";
  opacity: var(--label-opacity);
  transform: translateY(var(--label-position));
}
.table-of-contents__list-item {
  position: relative;
  counter-increment: toc;
  --overline-scale: 1;
}
.table-of-contents__list-item::before {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: currentcolor;
  transform: scaleX(var(--overline-scale));
  transform-origin: 0 0;
}
.table-of-contents__list-item::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  content: "";
  transition: transform 0.2s ease;
  transform: scaleX(0);
  transform-origin: 0 0;
  background-color: currentcolor;
}
.table-of-contents__list-item:hover::after {
  transform: scaleX(1);
}
.table-of-contents__link {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-template-columns: 1.5rem 1fr auto;
  align-items: end;
  padding: 0.75rem 0;
  text-decoration: none;
}
@media screen and (min-width: 75rem) {
  .table-of-contents__link {
    align-items: start;
  }
}
.table-of-contents__link::before {
  content: "0" counter(toc);
}
.table-of-contents__link::after {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.25rem;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/var(--color-text)/svg' fill='none' viewBox='0 0 13 13'%3E%3Cpath fill='%23202527' d='M12.02.7h-2v7.9L1.42 0 0 1.41l8.6 8.61H.7v2h11.32V.71z'/%3E%3C/svg%3E%0A");
  background-size: contain;
}

.back-to-top {
  position: fixed;
  padding: 10px;
  right: 30px;
  bottom: 30px;
  transition: bottom 0.5s;
}
.back-to-top:hover {
  bottom: 50px;
}
.back-to-top svg {
  fill: var(--color-primary);
  width: 53px;
  height: auto;
}

.aside {
  line-height: 1.25;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0 5rem 0 1rem;
  color: var(--color-background-tint);
  border-left: 4px solid currentcolor;
  font-style: italic;
}
.aside::before {
  font-size: 0.75rem;
  font-weight: bold;
  font-style: normal;
  display: block;
  margin-bottom: 0.5em;
  content: "Note";
  text-transform: uppercase;
}

.project__details {
  text-transform: uppercase;
  grid-column: 9/span 8;
  display: grid;
  justify-items: flex-end;
  grid-row: 1;
  align-items: flex-start;
}

.project__section {
  display: grid;
  max-width: 75rem;
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (min-width: 800px) {
  .project__section {
    grid-template-columns: repeat(16, 1fr);
    grid-column-gap: 1rem;
    padding: 6rem 0;
  }
}
.project__section:last-of-type {
  padding-bottom: 10rem;
}
.project__section-head {
  position: relative;
  font-size: 2rem;
  font-weight: 100;
  counter-increment: section;
}
@media screen and (min-width: 800px) {
  .project__section-head {
    grid-column: 1/span 5;
    margin-bottom: 0;
    border-top: 0;
    display: grid;
    grid-column-gap: 2ch;
    grid-template-columns: auto 1fr;
    height: 1em;
    scroll-margin-top: calc(3rem - 1px);
  }
}
.project__section-head::before {
  margin-right: 10px;
  margin-bottom: 1em;
  content: "0" counter(section);
}
@media screen and (min-width: 800px) {
  .project__section-head::before {
    display: block;
  }
}

.project__contents > :first-child {
  margin-top: 0;
}
@media screen and (min-width: 800px) {
  .project__contents {
    grid-column: 6/span 9;
  }
}

.project__info {
  grid-column: 13/span 4;
  justify-items: flex-end;
  grid-row: 1/span 2;
  font-size: 1rem;
}
.project__info h4 {
  font-family: var(--font-family-monospace);
  font-style: italic;
}
.project__info h5 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-background-tint);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.1rem;
}

:root {
  /* @link https://utopia.fyi/type/calculator?c=400,16,1.2,1200,18,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l */
  --radius-pill: 360px;
  --radius-round: 50%;
  /* @link https://utopia.fyi/space/calculator?c=320,16,1.2,1140,18,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l */
  --space-2xs: clamp(0.5rem, calc(0.48rem + 0.12vw), 0.56rem);
  --space-sm: clamp(1rem, calc(0.95rem + 0.24vw), 1.13rem);
  --duration: 200ms;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

[data-theme-controls] {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.color-scheme-toggle {
  position: relative;
  display: grid;
  grid-template-areas: "toggle";
  place-items: center;
  padding: var(--space-2xs);
  color: var(--color-text);
  background-color: transparent;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.color-scheme-toggle > * {
  grid-area: toggle;
}

.color-scheme-toggle:active {
  transform: translateY(1px);
}

/**
* Toggle icon visibility
*/
.color-scheme-toggle .light {
  opacity: 1;
}

.color-scheme-toggle .dark {
  opacity: 0;
}

@media (prefers-color-scheme: dark) {
  .color-scheme-toggle .light {
    opacity: 0;
  }
  .color-scheme-toggle .dark {
    opacity: 1;
  }
}
[data-color-scheme=dark] .color-scheme-toggle .light,
[data-color-scheme=light] .color-scheme-toggle .dark {
  opacity: 0;
}

[data-color-scheme=light] .color-scheme-toggle .light,
[data-color-scheme=dark] .color-scheme-toggle .dark {
  opacity: 1;
}

/**
* Light icon transitions
*/
@media (prefers-color-scheme: dark) {
  .color-scheme-toggle .light line:nth-of-type(-n + 4) {
    stroke-dashoffset: var(--icon-dash-ray);
  }
  .color-scheme-toggle .light line:nth-last-of-type(-n + 2) {
    stroke-dashoffset: var(--icon-dash-horizon);
  }
  .color-scheme-toggle .light path {
    stroke-dashoffset: var(--icon-dash-sun);
  }
}
.color-scheme-toggle .light line:nth-of-type(-n + 4) {
  stroke-dasharray: var(--icon-dash-ray);
}

[data-color-scheme=dark] .color-scheme-toggle .light line:nth-of-type(-n + 4) {
  stroke-dashoffset: var(--icon-dash-ray);
}

[data-color-scheme=light] .color-scheme-toggle .light line:nth-of-type(-n + 4) {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset calc(var(--duration) * 4) 0.1s var(--ease);
}

[data-color-scheme=light] .color-scheme-toggle .light line:nth-of-type(2) {
  transition-delay: 0.2s;
}

[data-color-scheme=light] .color-scheme-toggle .light line:nth-of-type(3) {
  transition-delay: 0.3s;
}

[data-color-scheme=light] .color-scheme-toggle .light line:nth-of-type(4) {
  transition-delay: 0.4s;
}

.color-scheme-toggle .light line:nth-last-of-type(-n + 2) {
  transform: scaleX(-1);
  transform-origin: center;
  stroke-dasharray: var(--icon-dash-horizon) var(--icon-dash-horizon);
}

[data-color-scheme=dark] .color-scheme-toggle .light line:nth-last-of-type(-n + 2) {
  stroke-dashoffset: var(--icon-dash-horizon);
}

[data-color-scheme=light] .color-scheme-toggle .light line:nth-last-of-type(-n + 2) {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset calc(var(--duration) * 2) var(--ease);
}

[data-color-scheme=light] .color-scheme-toggle .light line:nth-last-of-type(1) {
  transition-delay: 0.25s;
}

.color-scheme-toggle .light path {
  stroke-dasharray: var(--icon-dash-sun);
}

[data-color-scheme=dark] .color-scheme-toggle .light path {
  stroke-dashoffset: var(--icon-dash-sun);
}

[data-color-scheme=light] .color-scheme-toggle .light path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset calc(var(--duration) * 2) 0.2s var(--ease);
}

/**
* Dark icon transitions
*/
@media (prefers-color-scheme: light) {
  .color-scheme-toggle .dark line {
    opacity: 0.01;
  }
  .color-scheme-toggle .dark path {
    stroke-dashoffset: var(--icon-dash-moon);
  }
}
[data-color-scheme=light] .color-scheme-toggle .dark line {
  opacity: 0.01;
}

[data-color-scheme=dark] .color-scheme-toggle .dark line {
  opacity: 1;
  transition: opacity var(--duration) 0.2s var(--ease);
}

[data-color-scheme=dark] .color-scheme-toggle .dark line:nth-last-of-type(-n + 2) {
  transition-delay: 0.3s;
}

.color-scheme-toggle .dark path {
  stroke-dasharray: var(--icon-dash-moon);
}

[data-color-scheme=light] .color-scheme-toggle .dark path {
  stroke-dashoffset: var(--icon-dash-moon);
}

[data-color-scheme=dark] .color-scheme-toggle .dark path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset calc(var(--duration) * 4) var(--ease);
}

/**
* Focus-visible icon
*/
.color-scheme-toggle .focus-arrows {
  display: none;
  position: absolute;
  top: var(--space-sm);
  left: calc(100% + var(--space-sm));
  color: var(--color-secondary);
  pointer-events: none;
}

.color-scheme-toggle:focus-visible .focus-arrows {
  display: block;
}

.theme-slider {
  flex: 1 1 0;
  max-width: 6rem;
  width: 100%;
}
.theme-slider:focus {
  outline: none;
}

.theme-slider-label {
  user-select: none;
}

input[type=range] {
  --thumb-size: 15px;
  --thumb-offset: -5px;
  --track-height: 5px;
  background-color: transparent;
  -webkit-appearance: none;
  cursor: pointer;
  padding-block: 0.5rem;
}

input[type=range]::-webkit-slider-runnable-track {
  height: var(--track-height);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-pill);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: var(--thumb-offset);
  width: var(--thumb-size);
  height: var(--thumb-size);
  background-color: var(--color-text);
  border: none;
  border-radius: var(--radius-round);
  cursor: grab;
  box-shadow: inset var(--color-background) 0 0 0 4px, var(--color-text) 0 0 0 2px;
}

input[type=range]:active::-webkit-slider-thumb {
  cursor: grabbing;
}

input[type=range]::-moz-range-track {
  background-color: var(--color-primary);
  height: var(--track-height);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  margin-top: var(--thumb-offset);
  width: var(--thumb-size);
  height: var(--thumb-size);
  background-color: var(--color-text);
  border: none;
  border-radius: var(--radius-round);
  cursor: grab;
  box-shadow: inset var(--color-background) 0 0 0 4px, var(--color-text) 0 0 0 2px;
}

input[type=range]:active::-moz-range-thumb {
  cursor: grabbing;
}

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee__row {
  position: relative;
  display: flex;
  user-select: none;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

.marquee__row:hover .marquee__group {
  animation-play-state: paused;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
.marquee__item {
  display: grid;
  place-items: center;
  width: var(--size);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee__section {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
  max-width: 90rem;
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
:root {
  --speedlify-border: #0cce6b;
  --speedlify-good: #088645;
  --speedlify-ok: #ffa400;
  --speedlify-bad: #ff4e42;
  --speedlify-up: #008000;
  --speedlify-down: #ff0000;
}

speedlify-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* The Lighthouse scoring circles */
.speedlify-score {
  font-size: 0.8125em; /* 13px /16 */
  width: 2.6em;
  height: 2.6em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--speedlify-border);
  color: var(--speedlify-good);
  margin-left: 0.4615384615em; /* 6px /13 */
}

.speedlify-score-ok {
  color: var(--speedlify-ok);
  border-color: currentColor;
}

.speedlify-score-bad {
  color: var(--speedlify-bad);
  border-color: currentColor;
}

.speedlify-rank:before {
  content: "Rank #";
}

.speedlify-rank-change {
  font-size: 0.8125em; /* 13px /16 */
}

.speedlify-rank-change:before {
  line-height: 1;
}

.speedlify-rank-change.up {
  color: var(--speedlify-up);
}

.speedlify-rank-change.up:before {
  content: "⬆";
}

.speedlify-rank-change.down {
  color: var(--speedlify-down);
}

.speedlify-rank-change.down:before {
  content: "⬇";
}

speedlify-score > :not(.speedlify-score) {
  margin-left: 0.625em; /* 10px /16 */
}

speedlify-score > :first-child {
  margin-left: 0;
}

.home {
  display: flex;
  align-items: flex-end;
}
.home p {
  font-size: clamp(30px, 3vw, 70px);
  text-transform: none;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (min-width: 940px) {
  .home p {
    max-width: 70vw;
  }
}
.home a {
  font-style: italic;
  position: relative;
}
.home a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentcolor;
  bottom: 0.5vw;
  left: 0;
  opacity: 0;
  transform-origin: 0% 50%;
  transform: scaleX(0);
  transition: all 0.25s ease-out;
}
.home a:hover::before, .home a:focus::before {
  opacity: 1;
  transform: scaleX(1);
}

.hello {
  max-width: 30em;
  width: 80vw;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes scroll {
  to {
    transform: translate(calc(-30% - 95.6rem));
  }
}
@keyframes pulse {
  0% {
    r: 1.9;
  }
  50% {
    r: 3;
  }
  100% {
    r: 1.9;
  }
}
@keyframes top-bubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottom-bubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@font-face {
  font-family: "CaskaydiaCove NF";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/CaskaydiaCoveNF-ExtraLight.woff") format("woff"), url("../fonts/CaskaydiaCoveNF-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "CaskaydiaCove NF";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/CaskaydiaCoveNF-ExtraLightItalic.woff") format("woff"), url("../fonts/CaskaydiaCoveNF-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Dank Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DankMono-Regular.woff") format("woff"), url("../fonts/DankMono-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Dank Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/DankMono-Bold.woff") format("woff"), url("../fonts/DankMono-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Dank Mono";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DankMono-Italic.woff") format("woff"), url("../fonts/DankMono-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Satoshi-Bold.woff") format("woff"), url("../fonts/Satoshi-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Satoshi-BoldItalic.woff") format("woff"), url("../fonts/Satoshi-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Satoshi-Black.woff") format("woff"), url("../fonts/Satoshi-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Satoshi-BlackItalic.woff") format("woff"), url("../fonts/Satoshi-BlackItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Satoshi-Italic.woff") format("woff"), url("../fonts/Satoshi-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Satoshi-LightItalic.woff") format("woff"), url("../fonts/Satoshi-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Satoshi-Light.woff") format("woff"), url("../fonts/Satoshi-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Satoshi-MediumItalic.woff") format("woff"), url("../fonts/Satoshi-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.woff2") format("woff2");
}

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