/* animation */

.text-glow {
  animation-duration: 3s;
  animation-name: textglow;
  animation-iteration-count: infinite;
}

@keyframes textglow {
  0% {
    color: #FFFFFF;
    text-shadow: rgba(245, 130, 23, .5) 0px 0px 35px, rgba(245, 130, 23, 1) 0px 0px 20px;
  }

  50% {
    color: #FEFF88;
    text-shadow: rgba(254,255,136, .5) 0px 0px 35px, rgba(254,255,136, 1) 0px 0px 20px;
  }
  100% {
    color: #FFFFFF;
    text-shadow: rgba(245, 130, 23, .5) 0px 0px 35px, rgba(245, 130, 23, 1) 0px 0px 20px;
  }
}

