html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: "Geist", Arial, Helvetica, sans-serif;
  background-color: black;
  color: white;
}
body.light {
  background-color: white;
  color: black;
}
:root {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  --base-hue: 40;
  --nav-bar-height: 5rem;
}
*::-webkit-scrollbar {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  transition: 250ms;
  transition-timing-function: cubic-bezier(0, 0, 0.13, 1.38);
  --default-animation-timing-function: cubic-bezier(0, 0, 0.13, 1.38);
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}
a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #24c8db;
}
p {
  line-height: 1.3;
}
input,
button,
textarea {
  border-radius: 0.6rem;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(15, 15, 15, 0.5960784314);
}
button {
  cursor: pointer;
  scale: 1;
}
button:hover {
  scale: 1.04;
}
button:active {
  background-color: rgba(15, 15, 15, 0.4117647059);
}
input,
button {
  outline: none;
}
polyline {
  stroke-width: 5;
}
.circle {
  border-radius: 50%;
}
.spread {
  display: flex;
  justify-content: center;
  align-items: center;
}
.spread.between {
  justify-content: space-between;
}
.spread.column {
  flex-direction: column;
  gap: 1rem;
}
.spread.column.no-gap {
  gap: 0rem;
}
.spread.around {
  justify-content: space-around;
}
.spread.jstart {
  justify-content: flex-start;
}
.spread.jend {
  justify-content: flex-end;
}
.spread.astart {
  align-items: flex-start;
}
.spread.astretch {
  align-items: stretch;
}
.spread.aend {
  align-items: flex-end;
}
.spread.wrap {
  flex-wrap: wrap;
}
.spread.gap {
  gap: 1rem;
}
.spread.no-gap {
  gap: 0rem;
}
.spread.small-gap {
  gap: 0.5rem;
}
.spread.max-width > * {
  width: 100%;
}
.scaffold {
  height: 100vh;
  overflow-x: hidden;
}
.scaffold .body {
  overflow-y: scroll;
}
.scaffold button.generic {
  width: 90%;
  margin-block: 1rem;
}
.max-width {
  width: 100%;
}
span.notice {
  color: #aaa;
}
body.light svg {
  --lighter: #333;
}
svg {
  --lighter: #ddd;
  --size: 1rem;
  width: var(--size);
  height: var(--size);
}
.all-caps {
  font-variant-caps: all-small-caps;
}
body.light .pill {
  color: black;
  background-color: rgba(238, 238, 238, 0.3333333333);
  border: 1px solid rgba(68, 68, 68, 0.1333333333);
  text-shadow: none;
}
.pill {
  border-radius: 50px;
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5333333333);
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.6rem;
}
.pill.spread {
  gap: 0.25rem;
}
.pill.colored {
  --pill-hue: var(--base-hue);
  background: hsl(var(--pill-hue), 59%, 15%);
  color: hsl(var(--pill-hue), 100%, 66%);
}
.text-grad .tg-white {
  background: linear-gradient(90deg, #333 -250%, #fff, #333 450%);
  background-clip: border-box;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fill-changable {
  fill: var(--default-svg-fill, white);
}
@media only screen and (min-width: 767px) {
  .mobile-only {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
.dot {
  --size: 0.5rem;
  width: var(--size);
  height: var(--size);
  border-radius: 2rem;
}
/* ------------------ Mobile-rendered styles ------------------ */
.mobile-pill {
  min-height: 15px;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  width: max-content;
  margin: auto;
}
.mobile-pill, .mobile-pill-colors {
  background-color: hsl(var(--hue), 70%, 90%);
  color: hsl(var(--hue), 100%, 25%);
  border: 1px solid hsla(var(--hue), 100%, 40%, 30%);
}

