.momis-rose-petal {
    position: fixed;
    top: -60px;
    width: 26px;
    height: 26px;
    animation-name: momisLuxuryFall;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.9;
}

@keyframes momisLuxuryFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(50vh) rotate(180deg);
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.7;
    }
}
