.grad{
    width: 200px;
    color: white;
    background-image: linear-gradient(to right top, #00d37e, #00cbd3, #00b8ff, #008eff, #e112eb);
}


    
 /* Keyframes to animate gradient */
    @keyframes text-gradient {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }
    .animate-gradient {
      background-size: 200% auto;
      animation: text-gradient 3.5s linear infinite;
    }
    .animate-grad{
        background-size: 200% auto;
      animation: text-gradient 2s linear infinite;
    }

  