@keyframes textShimmer {
  0% {
    background-position: -100%;
  }
  100% {
    background-position: 200%;
  }
}

.animate-textShimmer {
  background-image: linear-gradient(90deg, #f43f5e, #facc15, #fb923c, #f43f5e);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: textShimmer 3s linear infinite;
}
