canvas.fireworks-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.diwali-text {
  width: 100%;
  text-align: center;
  color: #3c589f;
  font-size: 3em;
  font-weight: bold;
  text-shadow: 0 0 20px orange, 0 0 40px red;
  animation: glow 2s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 10;
}

.click-text {
  width: 100%;
  text-align: center;
  color: gray;
  font-size: 1.2em;
  opacity: 0.8;
  pointer-events: none;
  z-index: 10;
  margin: 5px 0;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ad9b2aff, 0 0 20px #3c589f;
  }

  to {
    text-shadow: 0 0 30px #ce7018ff, 0 0 60px #3c589f;
  }
}

#fire-audio {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
}
