*{
    margin: 0;
    font-family: 'Julee', cursive;
    padding: 0;
}
body{
    background-image: url(header.png);
    background-repeat: no-repeat;
    background-size:25% 15%;
    background-position: 50% 45%;
    background-color: lightgreen;
}
.p1{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: black;
    color: yellow;
    width: 400px;
    height: 30px;
    margin-left: 560px;
}
.header{
    margin-top: 100px;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 50px;
}
footer{
    display: block;
    color: yellow;
    background-color: black;
    height: 30px;
    width: 200px;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-left: 680px;
    margin-top: 250px;
}

#game{
    height: 500px;
    width: 390px;
    border: 1px solid black;
    margin: 1rem auto;
    background:url(bg.jpg) ;
    background-size: contain;
    overflow: hidden;
}
#GST{
    height: 100px;
    width: 130px;
    background-color: black;
    position: relative;
    background-repeat: no repeat;
    top: 0px;
    left: 0px;
    text-align: center;
    animation: move 1s linear  infinite  ;

}
#GST img{
    height: 100px;
}
@keyframes move {
    0%{
        top: 0px;
    }
    100%{
        top: 501px;
    }
    
}
#racecar{
    height: 100px;
    width: 130px;
    background-color: red;
    position: relative;
    top: 250px;
    left: 130px;
    text-align: center;
}
#racecar img{
    height: 100px;
}

#result{
    height: 200px;
    width: 400px;
    background-color: cornflowerblue;
    margin:  1rem auto;
    border-radius: 20px;
    font-size: 30px;
    text-align: center;
    color: white;
    display:none ;
}
#score{
    font-size: 2.2rem;
    color: brown;
}
#btn{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: none;
    background-color: black;
    color: cyan;
    font-size: 25px;
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
}