.confetti {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
/* Animation for the confetti particles */
@keyframes burst {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y));
    opacity: 0;
  }
}