*{
    margin: 0;
    padding: 0;
    font-family: 'Kaushan Script', cursive;
}
body
{
      background-image: linear-gradient(to right bottom,#1AF3B5, #0F27F6,#1AF3B5);
      background-size: cover;
     
}
#game{
    height: 580px;
    width: 390px;
    border: 0px solid black;
    margin: 1rem auto;
    background:url(bgg.jpg) ;
    background-size: contain;
    overflow: hidden;
    box-shadow: 3px 3px 9px 9px #8A9086;
    border-radius: 60px;
}
#bluecar{
    height: 100px;
    width: 130px;
    background-color: none;
    position: relative;
    top: 0px;
    left: 0px;
    text-align: center;
    animation: move 1s linear  infinite  ;
    border-radius: 20px;

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

#result{
    height: 100vh;
    width: 400px;
    background-color: transparent;
    border-radius: 20px;
    font-size: 30px;
    font-family: 'Kaushan Script', cursive;
    text-align: center;
    color: black;
    display:none ;
    justify-content: center;
    align-items: center;
    position: relative;
    top:0px ;
    left: 37%;
}

#score{
    font-size: 50px;
    color: black;
}
#btn{   
    border-radius: 20px;
    border: none;
    background-color: wheat;
    color: black;
    font-size: 25px;
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
    width: 200px;
}
#btn:hover
{
    background-color: hotpink;
}