
.card-vertical {
    aspect-ratio: 3 / 4;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    opacity: 0;
    animation: confetti-fall 3s ease-out forwards;
    z-index: 50;
    border-radius: 50%;
}

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