.box-shadow{
   box-shadow: 0px 0px 50px #000000a6;
}




/* .animation-area{
    min-height: 100vh;
    background-color: rosybrown;
    /* position: absolute; 
} */

.box-area{
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.box-area li{
    position: absolute;
    display: inline-block;
    bottom: -50px;

    list-style-type: none;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    animation: animate 20s linear infinite;
}


.box-area li:nth-child(1){
    left: 80%;
    width: 25px;
    height: 25px;
    animation-delay: 0s;
}

.box-area li:nth-child(2){
    left: 30%;
    width: 20px;
    height: 20px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}

.box-area li:nth-child(3){
    left: 45%;
    width: 35px;
    height: 35px;
    animation-delay: 5.5s;
}

.box-area li:nth-child(4){
    left: 68%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 15s;
}

.box-area li:nth-child(5){
    left: 79%;
    width: 37px;
    height: 37px;
    animation-delay: 6s;
}

.box-area li:nth-child(6){
    left: 29%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.box-area li:nth-child(7){
    left: 50%;
    width: 33px;
    height: 33px;
    animation-delay: 0.5s;
}

.box-area li:nth-child(8){
    left: 39%;
    width: 45px;
    height: 45px;
    animation-delay: 1s;
    animation-duration: 10s;
}

.box-area li:nth-child(9){
    left: 29%;
    width: 37px;
    height: 37px;
    animation-delay: 3s;
}

.box-area li:nth-child(10){
    left: 33%;
    width: 37px;
    height: 37px;
    animation-delay: 2s;
    animation-duration: 7s;
}



@keyframes animate{
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100%{
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}


@media screen and (min-width: 320px ){
    .score-container{
        padding: 15% 10%;
        position: fixed;
        z-index: 1;
        width: 100%;
    }
}


@media screen and (min-height: 800px ){
    .score-container{
        padding: 35% 10%;
    }
}
/* 
@media screen and (min-width: 414px){
    .score-container{
        padding: 50% 10%;
    }
}

@media screen and (min-width: 800px){
    .score-container{
        padding: 55% 10%;
    }
} */