body {
    font-family: 'Times New Roman', Times, serif; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: rgb(18, 44, 21) ;
}

.container{
    background: url(images/forest.gif) center no-repeat;
    position: relative; 
    display: flex;
    height: 60%;
    width: 100%;
}



.game {
    width: 2500px ;
    
    border-bottom: 3px solid #fff;
    
    
    margin: 20px;
}

.hero {
    width: 20px;
    height: 50px;
    position: relative;
    top: 150px;
    right: 50px;
   /*z-index: 1;*/
}

.hero img {
    width: 35px;
    height: 50px;
}

.animate {
    animation: jump 0.9s linear;

}

@keyframes jump {
    0% {
        top: 150px;
    }
    30% {
        top: 100px;
    }
    50% {
        top: 60px;
    }
    70% {
        top: 100px;
    }
    100% {
        top: 150px;
    }
}

.vilan {
    width: 20px;
    height: 20px;
    position: relative;
    top: 115px;
    left: 650px;
   /* animation: move 1s infinite linear;*/
    z-index: 1;
}

@keyframes move {
    0% {
        left: 480px;
    }
    100% {
        left: -20px
    }
} 

.vilan img {
    width: 50px;
}