*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:url(../img/sky.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
.road{
    width: 500%;
    height: 200px;
    background:url(../img/road.jpg);
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    animation: road 5s linear infinite;
    margin: auto;
}
@keyframes road{
    0%{
        transform: translateX(0px);
    }
    100%{
        transform: translateX(-3500px);
    }
}
.city{
    width: 500%;
    height: 250px;
    background: url(../img/city.png);
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    z-index: 1;
    animation: city 20s linear infinite;
}
@keyframes city{
    0%{
        transform: translateX(0px);
    }
    100%{
        transform: translateX(-1400px);
    }
}
.car{
    width: 600px;
    position: absolute;
    left: 35%;
    bottom: 9px;
    z-index: 2;
}
.car .car-runing{
    width: 100%;
    transform: translateY(-1px);
    animation: car 1s ease-in infinite
}
@keyframes car{
    0%{
        transform: translateY(-1px);
    }
    50%{
        transform: translateY(1px);
    }
    100%{
        transform: translateY(-1px);
    }
}
.wheel{
    width: 90px;
    position: absolute;
    top: 139px;
    left: 105px;
    animation: wheel 1s linear infinite;
}
@keyframes wheel{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.first{
    width: 90px;
    position: absolute;
    top: 139px;
    left: 407px;
}
.author-name{
    text-align: center;
    border: 3px solid #000;
    width: 374px;
    margin: auto;
    margin-top: 50px;
    letter-spacing: 2px;
    word-spacing: 2px;
    font-family: cursive;
    padding: 10px 15px;
    font-weight: bold;
}