*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url('images/l2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height:100vh;
    overflow: hidden;
}
/* .gameContainer{
    
} */

.cinderlla img{
    /* background-image: url('images/c4.png');
    background-size: cover; */
    width: 136px;
    height: 191px;
    position: absolute;
    bottom: 0;
    left:30px;
}

.animateCin{
    animation: cinderlla 0.6s linear;
}

@keyframes cinderlla {
    0%{
        bottom: 0;
        /* left:80px; */
    }
    50%{
        bottom:400px;
        /* left:50px; */

    }
    100%{
        bottom: 0;
        /* left:80px; */

    }
}

.obstacle img{
    /* border: 1px solid black; */
    width: 177px;
    height: 181px;
    position: absolute;
    bottom: 0;
    left:1000px;
}

.obstacleAni{
    animation: obstacleAni 5s linear infinite;
}


@keyframes obstacleAni {
    0%{
        left:1000px;
    }
    100%{
        left:-10px
    }
}
.gameOver{
    display: flex;
    justify-content:center;
}

.heading{
    position:relative;
    top:30px;
    font-size:60px;
    text-align:center;
    font-family: 'Great Vibes', cursive;
    font-weight:580;
    text-decoration: underline;
    text-decoration-thickness: 2px;  

}
.gameOver1{
    visibility: hidden;
    position:relative;
    top: 37px;
    text-align: center;
    width: 160px;
    height: 128px;
}

.visibiltyClass{
    visibility: hidden;
}

#scoreCount{
    /* border: 1px solid black; */
    position:absolute;
    top: 51px;
    right: 29px;
    font-size: 27px;
    font-family: 'Trochut', cursive;
    font-weight: 500;
    color:#380505;
    background: burlywood;

}

#lifeCount{
     /* border: 1px solid black; */
     position:absolute;
     top: 51px;
     left: 29px;
     font-size: 28px;
     font-family: 'Trochut', cursive;
     font-weight: 500;
     color:#380505;
     background: burlywood;
     width: 75px;
}