.confetti {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  overflow: visible;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 12px;
  opacity: 0;
  animation: confetti-fall 1.2s ease-out forwards;
  border-radius: 2px;
}

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

  100% {
    transform: translateY(80px) rotate(360deg);
    opacity: 0;
  }
}
