*{
    margin: 0;
    padding: 0;
}

body{
    background-color: red;
    overflow: hidden;

}

.gameContainer{
    background-image: url(bg1.png) ;
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    width: 100%;
    height: 100vh;

}

.santa{
    background-image: url(santa1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 235px;
    height: 114px;
    position: absolute;
    bottom: 0;
    left: 30px;

}

.obstacle{
    width: 63px;
    height: 90px;
    background-image: url(tree1.png);
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 44vw;

}

.animateSanta{
    animation: santa 0.6s linear;
}

.gameOver{
    position: relative;
    top: 100px;
    font-size: 33px;
    color: white;
    text-align: center;
    font-family:fantasy;
    visibility: visible;    
}

#scoreCont{
    position: absolute;
    right: 23px;
    top: 23px;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px;
    font-family: sans-serif;
    width: 112px;
    border-radius: 10px;
}

@keyframes santa{
    0%{
        bottom: 0;
    }
    50%{
        bottom: 422px;
    }
    100%{
        bottom: 0;
    }
}

.obstacleAni{
    animation: obstacleAni 5s linear infinite;
}
@keyframes obstacleAni{
    0%{
        left: 100vw;
    }
    100%{
        left: -10vw;
    }

}

