#confetti-container {
    position: absolute;
    user-select: none;
    z-index: 999999;
  }
  
  .confetti {
      width: 10px;
      height: 10px;
      background-color: #fbc531; /* Confetti color */
      position: absolute;
      animation: fall 4s ease-out infinite;
    }
    
    @keyframes fall {
      0% {
          transform: translateY(-100vh) rotate(0deg);
          opacity: 0;
      }
      100% {
          transform: translateY(100vh) rotate(720deg);
          opacity: 1;
      }
    }