@keyframes confetti-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.confetti {
  position: fixed;
  top: -10px;
  z-index: 999;
  width: 10px;
  height: 10px;
  animation: confetti-fall linear forwards;
  pointer-events: none;
}