#road{
    background-image: url("./images/road.jpg");
    height: 550px;
    width: 580px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 12px 20px 6px #cbc5c5;
}

#redCar{
position: absolute;
left: 170px;
top: 0;
rotate: 180deg;
animation: move 3.5s linear infinite;
}

#greenCar{
    position: absolute;
    left: 170px;
    bottom: 0;
}

@keyframes move {
    0%{
        top: 0%;
    }
    100%{
        top: 622px;
    }
}

.move{
    text-align: center;
    margin-top: 30px;
}
.move button{
    width: 80px;
    height: 80px;
    background-color: greenyellow;
    border-radius: 50%;
    font-size: 30px;
    border: none;
    text-align: center;

}

#result{
    width: 350px;
    height: 200px;
    margin: 0 auto;
    background-color: greenyellow;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    display: none;
}
#result_btn{
    background-color: black;
    border: none;
    border-radius: 15px;
    padding: 15px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;

}
#score{
    font-size: 20px;
    color: rgb(255, 0, 212);
    font-size: 22px;
    font-weight: 700;
}

@media screen and (max-width: 600px) {
    #road{
        background-image: url(./images/road.jpg);
        height: 530px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        background-repeat: no-repeat;
        background-size: 390px 530px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 12px 20px 6px #cbc5c5;
    }
    #redCar{
        left: 100px;
        top: 350px;
        rotate: 180deg;
        }
        #greenCar{
            left: 100px;
        }
        .move button{
            width: 50px;
            height: 50px;
            background-color: greenyellow;
            border-radius: 50%;
            font-size: 20px;
            border: none;
            text-align: center;
        
        }
        .move{
            text-align: center;
            margin-top: 20px;
        }
  }