.celebration-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  background-blend-mode: darken;
  background-color: rgb(0 0 0 / 63%);
}

.celebration-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100vw;
  max-height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 1;
}

.celebration-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    /* color: #a855fd; */
    font-size: 157px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgb(237 112 61);
    transform: translate(-50%, -50%) scale(1);
    animation: pulseFade 2s ease-in-out infinite;
}

@keyframes pulseFade {
  0%, 100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.9); /* zoomed out more */
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3); /* zoomed in more */
  }
}

