body {
  background: black;
}
.button {
  background-color: #fcb900;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;	
  padding: 10px 100px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #e20404; -webkit-box-shadow: 0 0 3px #e20404; }
  50% { background-color: #ff0303; -webkit-box-shadow: 0 0 40px #ff0303; }
  100% { background-color: #e20404; -webkit-box-shadow: 0 0 3px #e20404; }
}

@-moz-keyframes glowing {
  0% { background-color: #e20404; -moz-box-shadow: 0 0 3px #e20404; }
  50% { background-color: #ff0303; -moz-box-shadow: 0 0 40px #ff0303; }
  100% { background-color: #e20404; -moz-box-shadow: 0 0 3px #e20404; }
}

@-o-keyframes glowing {
  0% { background-color: #e20404; box-shadow: 0 0 3px #e20404; }
  50% { background-color: #ff0303; box-shadow: 0 0 40px #ff0303; }
  100% { background-color: #e20404; box-shadow: 0 0 3px #e20404; }
}

@keyframes glowing {
  0% { background-color: #e20404; box-shadow: 0 0 3px #e20404; }
  50% { background-color: #ff0303; box-shadow: 0 0 40px #ff0303; }
  100% { background-color: #e20404; box-shadow: 0 0 3px #e20404; }
}
