/* [project]/src/components/UI/RainbowText.module.css [app-client] (css) */
.RainbowText-module__NCytQq__container {
  z-index: 10;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.RainbowText-module__NCytQq__wrapper {
  will-change: transform, top, left;
  transition: transform .1s linear, top .5s ease-out, left .5s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}

.RainbowText-module__NCytQq__wrapper.RainbowText-module__NCytQq__idle {
  transition: top 1s cubic-bezier(.22, 1, .36, 1), left 1s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1);
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.RainbowText-module__NCytQq__link {
  pointer-events: auto;
  text-decoration: none;
  display: block;
  position: relative;
}

.RainbowText-module__NCytQq__textBase {
  font-size: 3rem;
  font-family: var(--font-ai), sans-serif;
  letter-spacing: 4px;
  color: #0000;
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  padding: 10px;
  font-weight: 700;
  transition: transform .2s ease-in-out;
  animation: 5s infinite RainbowText-module__NCytQq__gradientFlow;
  position: relative;
  transform: none;
}

.RainbowText-module__NCytQq__themeClassic {
  background-image: linear-gradient(45deg, red, #ff7f00, #ff0, #0f0, #00f, indigo, #8f00ff, red);
}

.RainbowText-module__NCytQq__themeCool {
  background-image: linear-gradient(45deg, #0ff, #00b7ff, #0051ff, #4d00ff, #90f);
}

.RainbowText-module__NCytQq__themeWarm {
  background-image: linear-gradient(45deg, red, #ff4000, #ff8000, #ffbf00, #ff0);
}

.RainbowText-module__NCytQq__themeNeon {
  background-image: linear-gradient(45deg, #f0c, #33f, #0f0, #ff0);
}

.RainbowText-module__NCytQq__themePlasma {
  background-image: linear-gradient(45deg, #f09, #493240, #00d4ff, #f09);
}

.RainbowText-module__NCytQq__idle .RainbowText-module__NCytQq__textBase {
  animation: 5s infinite RainbowText-module__NCytQq__gradientFlow, 1.5s ease-in-out infinite both RainbowText-module__NCytQq__heartbeat;
}

.RainbowText-module__NCytQq__ripple {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.RainbowText-module__NCytQq__idle .RainbowText-module__NCytQq__ripple {
  animation: 5s infinite RainbowText-module__NCytQq__gradientFlow, 1.5s ease-out infinite both RainbowText-module__NCytQq__ripple;
}

.RainbowText-module__NCytQq__textBase:hover {
  transform: scale(1.1);
}

@keyframes RainbowText-module__NCytQq__gradientFlow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes RainbowText-module__NCytQq__heartbeat {
  from {
    transform: scale(1);
  }

  10% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes RainbowText-module__NCytQq__ripple {
  0% {
    opacity: .6;
    transform: translate(-50%, -50%)scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(2.5);
  }
}

@media (max-width: 768px) {
  .RainbowText-module__NCytQq__textBase {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=src_components_UI_RainbowText_module_ef3505aa.css.map*/