.color-change {
    padding-left: 3px;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    animation: changeColor 3s infinite;
}

.pulse-animation {
    animation: pulseAnimation 2s infinite;
  }
@keyframes changeColor {
    0% {
        color: #fff;
        
    }
    25% {
        color: #00ff00;
        
    }
    50% {
        color: yellow;
        
    }
    75% {
        color: #ff00ff;
        
    }
    100% {
        color: #fff;
        
    }
}
 @keyframes pulseAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
      color: #00ff00;
    }
    100% {
      transform: scale(1);
    }
  }

  