/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
h1, h2, .text-5xl, .gt {
  background: linear-gradient(0deg, #d01eb9, #fadbf6);
  background-size: 200% auto;
  color: transparent !important;
  background-clip: text;
  animation: text-animation 3s linear infinite;
}

nav h1 {
  --tw-text-opacity: 1;
  color: rgba(var(--cl-t-primary), var(--tw-text-opacity)) !important;
}

@keyframes text-animation {
  0% {
    background-position: 0% 50%;
  }

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

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