#myProgress {
  width: 100%;
  background-color: grey;
}

#myBar {
  width: 1%;
  height: 30px;
  background-color: #04AA6D;
  text-align: center; /* To center it horizontally (if you want) */
  line-height: 30px; /* To center it vertically */
  color: white;
}

.glow {
  font-size: 30px;
  color: #000;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #3cb371, 0 0 40px #3cb371, 0 0 50px #3cb371, 0 0 60px #3cb371, 0 0 70px #3cb371;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #2bd310, 0 0 40px #2bd310, 0 0 50px #2bd310, 0 0 60px #2bd310, 0 0 70px #2bd310, 0 0 80px #2bd310;
  }
}