.glow {
  font-size: 40px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
  font-style: italic;
  margin-left: 20px;
  margin-right: 20px;
  /* font-family: 'Bebas Neue', cursive; */
}

.glowMobile {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-style: italic;
  margin-left: 20px;
  margin-right: 20px;
  /* font-family: 'Bebas Neue', cursive; */
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #c8a964, 0 0 40px #c8a964, 0 0 50px #c8a964, 0 0 60px #c8a964, 0 0 70px #c8a964;
}

.bn5 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid #c8a9644f;
}

.bn5:before {
  content: '';
  background: linear-gradient(45deg, #c8a964, #616161, #c8a964, #616161, #c8a964, #616161, #c8a964, #616161, #c8a964);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowingbn5 20s linear infinite;
  -webkit-animation: glowingbn5 20s linear infinite;
  -moz-animation: glowingbn5 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowingbn5 {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.bn5:active {
  color: #000;
}

.bn5:active:after {
  background: transparent;
}

.bn5:hover:before {
  opacity: 1;
}

.bn5:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #191919;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.bnWithoutSelection {
  padding: 0px;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  margin-top: 20px;
}

.bnWithoutSelection:before {
  content: '';
  background: linear-gradient(45deg, #c8a964, #616161, #c8a964, #616161, #c8a964, #616161, #c8a964, #616161, #c8a964);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowingbn5 50s linear infinite;
  -webkit-animation: glowingbn5 50s linear infinite;
  -moz-animation: glowingbn5 50s linear infinite;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.bnWithoutSelection:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #c8a96426;
  left: 0;
  top: 0;
  border-radius: 10px;
}
