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

.confetti {
  position: absolute;
  width: 5px;
  height: 10px;
  background-color: rgba(255,201,138,0.29);
  opacity: 0.5;
  transform: rotate(45deg);
  animation: fall linear infinite;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(255,215,0,0.23), 0 0 10px rgba(232,218,142,0.75);
}

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

