  .neonText {
    color: #fff;
    text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #f09,
      0 0 82px #f09,
      0 0 92px #f09,
      0 0 102px #f09,
      0 0 151px #f09;
      font-family: "Vibur", sans-serif;
      font-family: "Sacramento", sans-serif;
      /* animation: pulsate 0.11s ease-in-out infinite alternate;     */
  }
  .neonText.blue {
    color: #fff;
    text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #70dee7,
      0 0 82px #70dee7,
      0 0 92px #70dee7,
      0 0 102px #70dee7,
      0 0 151px #70dee7;
      font-family: "Vibur", sans-serif;
      font-family: "Sacramento", sans-serif;
      /* animation: pulsate 0.11s ease-in-out infinite alternate;     */
  }
  .neonText.green {
    color: #fff;
    text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #0f0,
      0 0 82px #0f0,
      0 0 92px #0f0,
      0 0 102px #0f0,
      0 0 151px #0f0;
      font-family: "Vibur", sans-serif;
      font-family: "Sacramento", sans-serif;
      /* animation: pulsate 0.11s ease-in-out infinite alternate;     */
  }

  h1.neonText {
      text-align: center;
      font-weight: 400;
      font-size: 8.2rem;
      line-height: .9;
  }

  h1.neonText.currentText {
    margin-bottom: 75px
  }

  /* Mobile and tablet responsive styles */
  @media screen and (max-width: 768px) {
    h1.neonText {
      font-size: 3.5rem;
      line-height: 1.2;
      padding: 0 1rem;
    }
  }

  @media screen and (max-width: 480px) {
    h1.neonText {
      font-size: 2.5rem;
      line-height: 1.3;
      padding: 0 0.5rem;
      margin-top: 50px;
    }
  }

  .neonBox {
    border-radius: 5px;
    backdrop-filter: saturate(180%) blur(10px);
    padding: 26px;
    box-shadow: 0 0 .2rem #fff,
    0 0 .2rem #fff,
    0 0 2rem #bc13fe,
    0 0 0.8rem #bc13fe,
    0 0 2.8rem #bc13fe,
    inset 0 0 1.3rem #bc13fe;
  }

@keyframes pulsate {
    
  100% {

      text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #f09,
      0 0 80px #f09,
      0 0 90px #f09,
      0 0 100px #f09,
      0 0 150px #f09;
  
  }
  
  0% {

    text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 18px #fff,
    0 0 38px #f09,
    0 0 73px #f09,
    0 0 80px #f09,
    0 0 94px #f09,
    0 0 140px #f09;

}

