

.textberjalan {
  font-weight: 700;
  /* text-align: center; */
  /* font-family: Hack, sans-serif; */
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffcd2c, rgb(250, 249, 247), #dbdad8);
  /* letter-spacing: 5px; */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 80%;
  animation: shine 5s linear infinite;
  position: relative;
  box-shadow: 1px 1px 10px #f6fbfd;
}

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

/*  Checkout my other pens on  https://codepen.io/grohit/  */