/** Glowing text **/
.text-glow-yellow {
  /* font-size: 7em;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1; */
  text-decoration: none;
  color: #fff;
  -webkit-animation: yellowglow 1.5s ease-in-out infinite alternate;
          animation: yellowglow 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes yellowglow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFC72C,
      0 0 70px #FFC72C, 0 0 80px #FFC72C, 0 0 100px #FFC72C, 0 0 150px #FFC72C;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFC72C,
      0 0 35px #FFC72C, 0 0 40px #FFC72C, 0 0 50px #FFC72C, 0 0 75px #FFC72C;
  }
}

@keyframes yellowglow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFC72C,
      0 0 70px #FFC72C, 0 0 80px #FFC72C, 0 0 100px #FFC72C, 0 0 150px #FFC72C;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFC72C,
      0 0 35px #FFC72C, 0 0 40px #FFC72C, 0 0 50px #FFC72C, 0 0 75px #FFC72C;
  }
}

.text-glow-pale-yellow {
  color: #fff;
  -webkit-animation: pale-yellow-glow 1.5s ease-in-out infinite alternate;
          animation: pale-yellow-glow 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes pale-yellow-glow {
  from {
    /* text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #f3d686,
      0 0 70px #f3d686, 0 0 80px #f3d686, 0 0 100px #f3d686, 0 0 150px #f3d686; */
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #f3d686,
      0 0 45px #f3d686, 0 0 50px #f3d686, 0 0 60px #f3d686, 0 0 85px #f3d686;
      /* 0 0 25px #f3d686, 0 0 30px #f3d686, 0 0 40px #f3d686, 0 0 65px #f3d686; Glow getting Darker */
      /* 0 0 35px #f3d686, 0 0 40px #f3d686, 0 0 50px #f3d686, 0 0 75px #f3d686; Original */
  }
}

@keyframes pale-yellow-glow {
  from {
    /* text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #f3d686,
      0 0 70px #f3d686, 0 0 80px #f3d686, 0 0 100px #f3d686, 0 0 150px #f3d686; */
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #f3d686,
    0 0 45px #f3d686, 0 0 50px #f3d686, 0 0 60px #f3d686, 0 0 85px #f3d686;
    /* 0 0 25px #f3d686, 0 0 30px #f3d686, 0 0 40px #f3d686, 0 0 65px #f3d686; Glow getting Darker */
    /* 0 0 35px #f3d686, 0 0 40px #f3d686, 0 0 50px #f3d686, 0 0 75px #f3d686; Original */
  }
}