.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #00a2ff 0%,
    #ffffff 29%,
    rgb(0, 110, 255) 67%,
    #ffffff 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 3s linear infinite;
  display: inline-block;
      font-size: 4rem;
      text-shadow: 3px 3px 15px  rgba(151, 222, 255, 0.897); /* Ejemplo de sombra */
    }

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}