/*
 * 2026 teaser intro styles
 */
.intro {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--background-color);
}

.intro--content {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro--text {
  font-weight: 900;
  font-size: 10vw;
  margin: 0;
  text-transform: uppercase;
  /*animation: calc((1000ms / 60) * 2) linear infinite alternate flicker;*/
}

.intro--skip {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  padding: 1rem;
  margin: 0;
  background: transparent;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 100;
  cursor: pointer;
}

.intro--skip:hover {
  font-weight: 300
}

@keyframes flicker {
  0% {
    opacity: 0%;
  }
  49% {
    opacity: 0%;
  }
  51% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}

@media screen and (prefers-reduced-motion: reduce) {
  .intro {
    display: none
  }
}
