*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    background-color: gray;
}
element.style{
        transform: translateX(250px);
}

#car{
    width: 400px;
    transition: all 0.5s ease-in;


}

#target{
    width: 100px;
}
.move-right{
    translate: 300px 0;
    rotate: 13deg;
}


#target {
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}
#start, #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 100;
}
#start{
    visibility: visible;
    background-color: dodgerblue;
}