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

:root {
  --color-text: #000;
  --color-bg: #f2f1eb;
  --color-link: #000;
  --color-link-hover: #000;
  --page-padding: 1rem;
  --columns: 15;
  --cursor-blend-mode: difference;
  --cursor-radius: 0;
  font-size: 14px;
}

.demo-1 {
  --color-text: #cdbcbc;
  --color-bg: #000;
  --color-link: #fff;
  --color-link-hover: #fff;
  --cursor-bg: #5cafc1;
  --cursor-blend-mode: exclusion;
  --gradient-text-1: #e8c942;
  --gradient-text-2: #9462d1;
}

.fuzz {
  --cursor-bg: #47ea82;
  --cursor-blend-mode: overlay;
  --gradient-text-1: #f6f6f6;
  --gradient-text-2: #e7505e;
}

.demo-3 {
  --color-text: #234acd;
  --color-bg: #000;
  --color-link: #6fd74e;
  --color-link-hover: #fff;
  --cursor-bg: #db970b;
  --cursor-blend-mode: overlay;
  --gradient-text-1: #1728eb;
  --gradient-text-2: #5fee38;
}

.demo-4 {
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #9fdee9;
  --color-link-hover: #fff;
  --cursor-bg: #f3d006;
  --cursor-blend-mode: exclusion;
  --gradient-text-1: #aedfea;
  --gradient-text-2: #fdebbc;
}

.demo-5 {
  --cursor-bg: #ea5b2acc;
  --gradient-text-1: #09314c;
  --gradient-text-2: #f2855d;
  --cursor-blend-mode: none;
}

.demo-6 {
  --cursor-bg: #c54733;
  --gradient-text-1: #000;
  --gradient-text-2: #ea694f;
  --cursor-blend-mode: none;
  --cursor-radius: 50%;
}

.demo-7 {
  --cursor-bg: #901ee9;
  --gradient-text-1: #000;
  --gradient-text-2: #5e5593;
  --cursor-radius: 50%;
  --cursor-blend-mode: color-burn;
}

.demo-8 {
  --cursor-bg: radial-gradient(#fddc6d 10%, transparent);
  --gradient-text-1: #000;
  --gradient-text-2: #5e5593;
  --cursor-blend-mode: overlay;
}

body {
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-position: 50%;
  background-size: cover;
  height: 100vh;
  margin: 0;
  font-family: source-code-pro, monospace;
  overflow: hidden;
}

p {
  color: #fff;
  background: #00000040;
  border-radius: 10px;
  padding: 10px;
}

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

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

.js .loading:after {
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  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: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;
}

.frame {
  padding: var(--page-padding);
  grid-gap: .5rem;
  pointer-events: none;
  z-index: 999;
  grid-template-columns: 100%;
  grid-template-areas: "title"
                       "prev"
                       "sponsor"
                       "demos";
  place-self: start;
  place-items: center start;
  width: 100%;
  display: grid;
  position: absolute;
}

body #cdawrap {
  justify-self: start;
}

.content {
  padding: 0 var(--page-padding);
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100vw;
  min-height: 100vh;
  font-family: greycliff-cf, sans-serif;
  font-weight: 300;
  display: flex;
  position: relative;
}

.content h2 {
  pointer-events: none;
  background-color: var(--gradient-text-1);
  background-image: linear-gradient(45deg, var(--gradient-text-1), var(--gradient-text-2));
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-repeat: repeat;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  margin: 0;
  font-size: 16vw;
  line-height: 1;
}

.content h2 i {
  letter-spacing: -1.75vw;
  font-family: lores-9-plus-wide, sans-serif;
  font-size: 14.25vw;
  font-style: normal;
  font-weight: 400;
}

.content p {
  font-variation-settings: "wght" 400, "opsz" 72, "ital" 0;
  pointer-events: none;
  max-width: 35ch;
  margin: 3vh 0 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
}

.cursor {
  pointer-events: none;
  z-index: 99;
  mix-blend-mode: var(--cursor-blend-mode);
  --size: calc(100vw / var(--columns));
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.cursor__inner {
  grid-template-columns: repeat(var(--columns), var(--size));
  display: grid;
}

.cursor__inner-box {
  width: var(--size);
  height: var(--size);
  background: var(--cursor-bg);
  opacity: 0;
  border-radius: var(--cursor-radius);
}

@media screen and (width >= 53em) {
  :root {
    --columns: 30;
    --page-padding: 2rem;
  }

  .frame {
    grid-gap: 2rem;
    grid-template-columns: auto auto auto 1fr;
    grid-template-areas: "title prev sponsor demos";
    justify-items: start;
  }

  .frame__demos {
    justify-self: end;
  }

  .frame__demos-item:first-child {
    width: auto;
  }

  .content {
    align-items: center;
  }
}

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