/* Happy Diwali Text Begin */
.diwali-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: yellow;
  text-shadow: 0 0 5vw gold, 0 0 10vw gold;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  text-align: center;
  white-space: nowrap;
}
/* Happy Diwali Text End */

canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.credits {
  position: absolute;
  right: 4%;
  bottom: 2%;
  color: #aaa;
  font-size: 12px;
  text-align: right;
}

#fireworks-container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 20px auto;
  height: 50vh;
  min-height: 300px;
  background: #000;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 768px) {
  #fireworks-container {
    height: 35vh;
    min-height: 200px;
  }
}

#fireworks-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
