.gdBoxGlow {
  -webkit-box-shadow:0px 0px 105px 12px rgba(74,46,255,0.71);
-moz-box-shadow: 0px 0px 105px 12px rgba(74,46,255,0.71);
box-shadow: 0px 0px 105px 12px rgba(74,46,255,0.71);
}
.gdBoxGlowAni {
  font-size: 70px;
  color: #95d2fa;
  text-align: center;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;  
}
@media (max-width: 600px) {
  .gdBoxGlowAni {
    font-size: 2rem;
    color: #95d2fa;
    text-align: center;
    -webkit-animation: glow 2s ease-in-out infinite alternate;
    -moz-animation: glow 2s ease-in-out infinite alternate;
    animation: glow 2s ease-in-out infinite alternate;  
  }
}


@keyframes glow {
  from {
    text-shadow: 0 0 3px #fff, 0 0 20px #fff, 0 0 30px #0b54c2, 0 0 40px #a21cc0, 0 0 50px hsl(199, 95%, 68%), 0 0 60px #8327f3, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 4px #fff, 0 0 30px #a6c5f0, 0 0 40px #41f1f4, 0 0 50px #b385f8, 0 0 60px #270bfc, 0 0 70px #9e93b2, 0 0 80px #d490ee;
  }
}

