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

:root {
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #61dca3;
  --color-link-hover: #fff;
  font-size: 18px;
}

body {
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  margin: 0;
  font-family: ballinger-mono, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
}

.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  top: 0;
  left: 0;
}

.js .loading:after {
  width: 60px;
  height: 60px;
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  margin: -30px 0 0 -30px;
  animation: .7s linear infinite alternate forwards loaderAnim;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

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

a:not(.frame__title-back) {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.unbutton {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.unbutton:focus {
  outline: none;
}

main {
  height: 100vh;
  flex-direction: column;
  display: flex;
}

.frame {
  color: var(--color-title);
  grid-gap: 2rem;
  text-transform: lowercase;
  align-items: start;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  font-size: .75rem;
}

.frame a:not(.frame__title-back):before {
  content: "";
  height: 1px;
  width: 100%;
  transform-origin: 0%;
  background: currentColor;
  transition: transform .3s;
  position: absolute;
  top: 90%;
}

.frame a:not(.frame__title-back):hover:before {
  transform-origin: 100%;
  transform: scaleX(0);
}

.frame__title {
  grid-area: title;
  display: flex;
}

.frame__title-main {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.frame__title-back {
  align-items: flex-end;
  display: flex;
  position: relative;
}

.frame__title-back span {
  display: none;
}

.frame__title-back svg {
  fill: currentColor;
}

.frame__prev {
  grid-area: prev;
  align-self: start;
}

.ascii {
  color: var(--color-link);
  opacity: .5;
  pointer-events: none;
  position: fixed;
  top: -1rem;
  right: 0;
}

.content {
  max-width: 830px;
  gap: 1rem;
  padding: 7vh 2rem 0;
  display: grid;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

.effects {
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
  padding: 2rem;
  display: flex;
}

.effects button {
  color: inherit;
  white-space: nowrap;
  text-transform: inherit;
  font: inherit;
  cursor: pointer;
  color: var(--color-link);
  text-transform: lowercase;
  background: none;
  border: 0;
  font-size: .75rem;
}

.effects button:before {
  content: "[";
  margin-right: .5rem;
  display: inline-block;
}

.effects button:after {
  content: "]";
  margin-left: .5rem;
  display: inline-block;
}

.effects button:hover {
  color: var(--color-link-hover);
}

.splitting .words .word {
  white-space: nowrap;
}

@media screen and (min-width: 53em) {
  .frame {
    grid-template: "title prev sponsor"
    / auto auto 1fr;
    justify-content: start;
    display: grid;
  }

  .content {
    grid-template-columns: 15ch 1fr;
  }
}

/*# sourceMappingURL=index.d046a61c.css.map */
