a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; }

.whatsapp-gradient {
  height: 7px;
  background: linear-gradient(
    90deg,
    #128c7e 0%,
    #25d366 25%,
    #25d366 50%,
    #128c7e 75%,
    #075e54 100%
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}