@keyframes rgb-cycle {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

.rgb-text{
  animation: rgb-cycle 4s linear infinite;
}

.marquee{
  animation: marquee 20s linear infinite;
  width: max-content;
}

@keyframes marquee{
  from{
    transform: translateX(0);
  }

  to{
    transform: translateX(calc(-50% - 1.5rem));
  }
}
