/* HEART */
.heart {
    position: fixed;
    top: -20px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.9;
    animation: fall-heart linear forwards;
}

/* CONFETTI */
.confetti {
    position: fixed;
    top: -10px;
    border-radius: 2px;
    opacity: 0.9;
    z-index: 9999;
    animation: fall linear forwards;
}

/* CONFETTI FALL */
@keyframes fall {
    to {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* HEART FALL */
@keyframes fall-heart {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        transform: translateY(110vh) scale(1.1) rotate(360deg);
        opacity: 0;
    }
}
