

.tp {
  position: relative;
  font-family: sans-serif;
  /*text-transform: uppercase;*/
  font-size: 4em;
  font-weight:500;
  top:-130px;
  letter-spacing: 4px;
  overflow: hidden;
  background: linear-gradient(90deg, #00cc99, #f5f5f5, #000);
  background-repeat: no-repeat;
  background-color:#fff;
  background-size: 80%;
  animation: animate 8s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}