.container {
    width: 100%;
    height: 100px;
    position: relative;
    background: grey;
    margin-top: 10px;
    margin-bottom: 10px;
}
#winner{
    visibility: hidden;
    text-align: center;
    font-size: 36px;
}
#winner[title="win"]{
    visibility: visible;
}
h1{
    text-align: center;
}
img{
    width: 200px;
    height: 170px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(-20deg);
    }
            
img[title="begin"]{
    transform: rotate(80deg);
    transition: all 0.1s ease-in-out 0s;
    }

#car1 {
    width: 35px;
    height: 25px;
    position: absolute;
    background: red;
    vertical-align: middle;
}
#car2 {
    width: 35px;
    height: 25px;
    position: absolute;
    background: yellow;
}
#car3 {
    width: 35px;
    height: 25px;
    position: absolute;
    background: blue;
}
#car4 {
    width: 35px;
    height: 25px;
    position: absolute;
    background: green;
}