:root {
  --color-flood: #060a36;
  --color-text-over-flood: white;
  --color-border-over-flood: hsl(from var(--color-text-over-flood) h s calc(l / 1.125));
  --color-accent: #ff3573;
  --color-text-over-accent: var(--color-flood);
  --basis: 3rem;
  --basis-padding: min(calc(var(--basis) * .5), 5vw);
  --basis-column-min-width: calc(60ch + (2 * var(--basis-padding)));
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Noto Sans, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  overflow-x: hidden;
}

.🧃-glitchbar {
  width: 100%;
  height: calc(var(--basis) / 2);
  z-index: 20;
  background-blend-mode: color-dodge;
  background: linear-gradient(#ffffff03), url("gli.ab2bba50.gif") 0 / cover, url("gli.987014c3.jpg") center / cover;
  display: block;
  position: relative;

  &:before {
    content: "";
    background: var(--color-border-over-flood);
    mix-blend-mode: color-dodge;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.🧃-glitchbox {
  background-blend-mode: normal, color-dodge;
  color: #000;
  font-smooth: never;
  background: linear-gradient(#ffffff03), url("gli.ab2bba50.gif") 0 / cover, url("gli.987014c3.jpg") center / cover;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 1px;
  padding: 1px 0;
  display: flex;

  & .🧃-glitchbox-flex {
    flex: 1 1 0;
  }

  & > * {
    mix-blend-mode: color-dodge;
    padding: calc(var(--basis-padding) * .5) var(--basis-padding);
    backface-visibility: hidden;
    text-shadow: 0 .5px;
    background: #fff;
    align-items: center;
    display: flex;
  }
}

.🧃-text-width {
  min-width: var(--basis-column-min-width);
}

:root {
  background-color: var(--color-flood);
  color: var(--color-text-over-flood);
  --color-border: var(--color-border-over-flood);
  --color-text: #000;
  --basis-home-padding: calc(var(--basis-padding) * 2);
}

* {
  color: inherit;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 300;
  text-decoration: none;
  list-style: none;
}

x-fg {
  z-index: 20;
  contain: content;
  mix-blend-mode: color-dodge;
  position: relative;
  overflow: hidden;
}

.wrapper {
  will-change: transform;
  z-index: 20;
  flex-direction: column;
  width: 100%;
  margin: auto;
  display: flex;
  position: relative;

  @media (orientation: landscape) {
    height: 100vh;
  }
}

h1 {
  display: inline;

  & strong {
    color: hsl(from var(--color-accent) h calc(s * 1.5) calc(l * 1.5));
  }
}

.intro {
  margin: calc(var(--basis-home-padding) * 1.5) var(--basis-home-padding);
  font-size: 1.8rem;

  & img {
    height: .8em;
    margin-right: .1em;
  }

  & .intro-para {
    margin-bottom: calc(var(--basis-home-padding) * .5);

    & + .intro-para {
      margin-bottom: 0;
    }
  }

  & strong, & em {
    cursor: help;
    font-style: normal;
    font-weight: 600;
  }

  & s {
    opacity: .5;
    cursor: help;
    text-decoration: line-through;
  }
}

.links {
  border: 1px solid var(--color-border);
  border-left: 0;
  border-right: 0;
  overflow: auto hidden;

  & a {
    padding: var(--basis-home-padding);
    contain: content;
    box-shadow: inset 0 0 0 0 var(--color-accent);
    flex-direction: column;
    flex: none;
    justify-content: space-between;
    display: flex;

    @media (orientation: landscape) {
      width: 11rem;
    }

    transition: all .25s;

    &:hover, &:focus {
      @media (orientation: landscape) {
        box-shadow: inset 0 -100vh 0 0 var(--color-accent);
      }

      @media (orientation: portrait) {
        box-shadow: inset 100vw 0 0 0 var(--color-accent);
      }

      color: var(--color-border);
      filter: blur(.5px);
    }
  }

  & ul {
    flex-direction: column;
    display: flex;

    @media (orientation: landscape) {
      flex-direction: row;
      height: 100%;
    }

    & li {
      display: contents;
    }

    & li + li a {
      @media (orientation: portrait) {
        border-block: 1px solid var(--color-border);
        margin-block-start: -1px;
      }

      @media (orientation: landscape) {
        border-inline: 1px solid var(--color-border);
        margin-inline-start: -1px;
      }
    }
  }

  & span {
    text-transform: uppercase;
    letter-spacing: .2em;
    opacity: .5;
    font-size: .8rem;
    font-weight: 200;
  }

  & strong {
    transform-origin: 0 0;
    font-size: 8vw;
    font-weight: 800;

    @media (orientation: landscape) {
      height: 10em;
      font-size: 8vh;
      line-height: 1cap;
      transform: translateY(100%) rotate(-90deg);
    }
  }
}

.wrapper > .links {
  @media (orientation: landscape) {
    flex: 1 1 0;
  }

  color: var(--color-text-on-neutral);
}

footer {
  color: var(--color-text-over-accent);
  padding: calc(var(--basis-home-padding) / 3) var(--basis-home-padding);
  background-color: var(--color-text-over-flood);
  flex-direction: row;
  justify-content: space-between;
  font-size: .8rem;
  font-weight: 400;
  display: flex;

  @media (orientation: portrait) {
    gap: calc(var(--basis-home-padding) / 3);
    flex-direction: column;
  }

  & strong {
    font-weight: 700;
  }

  & li {
    display: inline-block;

    &:not(:last-child):after {
      content: "·";
      padding: 0 .25em;
    }
  }

  & a {
    text-decoration: underline;
    text-decoration-color: hsl(from var(--color-text-over-accent) h s l / 50%);
    font-weight: 800;

    &:hover, &:focus {
      color: var(--color-accent);
      text-decoration-color: inherit;
    }
  }
}

x-tomfoolery {
  will-change: transform;
  contain: strict;
  pointer-events: none;
  background-blend-mode: normal, color-dodge;
  background: linear-gradient(#ffffff03), url("gli.ab2bba50.gif") 0 / cover, url("gli.987014c3.jpg") center / cover;
  position: fixed;
  inset: 0;
}
/*# sourceMappingURL=watermelon-pizza.cf8470a8.css.map */
