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

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* end reset */

html {
  font-family: 'Redacted Script', cursive;
  font-family: 'Roboto Mono', monospace;
}

:root {
  --font-size--default: calc((15/16) * 1rem);
  --color--accent: #00FFA3;
}

body {
  padding: 30px;
}

body > * {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}

h1, h2, p, li {
  font-weight: 400;
  font-size: var(--font-size--default);
  line-height: normal;
}

.color--accent {
  color: var(--color--accent);
}

ul.list--unstyled {
  list-style-type: none;
  margin: unset;
  padding: unset;
}

ul.indented {
  margin-left: 45px;
}

ul.list--plusses {
  list-style-type: "+ ";
}

.mb-1 {
  margin-bottom: 6px;
}

.mb-4 {
  margin-bottom: 24px;
}

/* Marquee styles */
.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

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

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

.marquee:hover .marquee__content {
  animation-play-state: paused;
}
