.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.confetti {
  position: absolute;
  top: -50px;
  width: 10px;
  height: 10px;
  background-color: #ff4081;
  border-radius: 50%;
  opacity: 0.9;
  animation: confetti-fall linear infinite;
}

.confetti:nth-child(2n) {
  background-color: #ff1a66;
}

.confetti:nth-child(3n) {
  background-color: #FFC107;
}

.confetti:nth-child(4n) {
  background-color: #4CAF50;
}

.confetti:nth-child(5n) {
  background-color: #3F51B5;
}

.confetti:nth-child(1) {
  left: 10%;
  animation-duration: 3s;
}

.confetti:nth-child(2) {
  left: 20%;
  animation-duration: 2.5s;
}

.confetti:nth-child(3) {
  left: 30%;
  animation-duration: 4s;
}

.confetti:nth-child(4) {
  left: 40%;
  animation-duration: 3.5s;
}

.confetti:nth-child(5) {
  left: 50%;
  animation-duration: 2.8s;
}

.confetti:nth-child(6) {
  left: 60%;
  animation-duration: 3.2s;
}

.confetti:nth-child(7) {
  left: 70%;
  animation-duration: 3.8s;
}

.confetti:nth-child(8) {
  left: 80%;
  animation-duration: 2.7s;
}

.confetti:nth-child(9) {
  left: 90%;
  animation-duration: 4.2s;
}

.confetti:nth-child(10) {
  left: 95%;
  animation-duration: 3.3s;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

