
#anim-two ul {
    /*text-align: center;*/
    list-style-type: none;
    /*display: flex;
    justify-content: space-around;*/

    padding: 0;
    margin: 0;
}
#anim-two ul li {
    /*width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);*/
    display: inline-block;
    margin: 0 5px;

    transform: translateY(-140px);

    animation: bounce-balls 1.2s cubic-bezier(0.245, 0.325, 0.51, 1.305) forwards  alternate;
}
#anim-two ul li:nth-child(1) {
    /*background: orange;*/

    /*animation-delay: 0.6s;*/
    animation-delay: 0.2s;
}
#anim-two ul li:nth-child(2) {
    /*background: coral;*/

    /*animation-delay: 0.7s;*/
    animation-delay: 0.3s;
}
#anim-two ul li:nth-child(3) {
    /*background: darksalmon;*/

    /*animation-delay: 0.8s;*/
    animation-delay: 0.4s;
}
#anim-two ul li:nth-child(4) {
    /*background: indianred;*/

    /*animation-delay: 0.6s;*/
    animation-delay: 0.2s;
}
#anim-two ul li:nth-child(5) {
    /*background: lightcoral;*/

    /*animation-delay: 0.6s;*/
    animation-delay: 0.2s;
}
#anim-two ul li:nth-child(6) {
    /*background: lightcoral;*/

    /*animation-delay: 0.7s;*/
    animation-delay: 0.3s;
}




@keyframes bounce-balls {
    30% {

        /*transform: translateY(-140px);*/
        transform: translateY(-140px);
    }
    60% {

        /*transform: translateY(205px);*/
        transform: translateY(35px);
    }
    80% {

        /*transform: translateY(190px);*/
        transform: translateY(45px);
    }
    100% {

        /*transform: translateY(195px);*/
        transform: translateY(0px);
    }
}