.money-container {
    position: absolute;
    /*width: 100%;*/
    /*height: 100vh;*/
    z-index:999;
}

/* Pénz elem */
.money {
    /*position: absolute;*/
    /*width: 100px;*/
    /*height: 50px;*/
    /*background: url('https://example.com/money.png') no-repeat center/cover;*/
    /*opacity: 0.8;*/
    /*animation: moneyfall linear;*/
    /*animation: moneyfall linear infinite;*/
    /*animation: moneyfall linear infinite, moneyfloat 3s ease-in-out infinite;*/
    /*animation: moneyfloat 3s ease-in-out infinite, moneyfall linear infinite;*/
}


@keyframes moneyfloat {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes moneyfall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        /*opacity: 1;*/
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        /*opacity: 0;*/
    }
}

/* Hullás animáció */
/*@keyframes fall {*/
/*    0% {*/
/*        transform: translateY(-100px) rotate(0deg);*/
/*        opacity: 1;*/
/*    }*/
/*    100% {*/
/*        transform: translateY(100vh) rotate(360deg);*/
/*        opacity: 0;*/
/*    }*/
/*}	*/