
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #ffffff 0%,
    #00ffff 29%,
    #ff96b4 67%,
    #dc143c 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 50% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 10s linear infinite;
  display: inline-block;
      font-size: 25px;
  font-family: 'Franklin Gothic Medium', 'Arial Nar';
   margin: 40px;
}

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