﻿.maint {
    margin-left: 5em;
    margin-top: 10em;
}

.Truck-head {
    width: 60px;
    height: 60px;
    background: #90997A;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 100%;
    display: inline-block;
    animation: wow 5s linear infinite;
    margin-left: -1%;
}

    .Truck-head:before {
        position: absolute;
        content: "";
        width: 15px;
        height: 15px;
        background: white;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 100%;
        margin-left: 25%;
        margin-top: 1.5em;
    }

.Truck-body {
    width: 250px;
    height: 100px;
    background: #90997A;
    border-radius: 5px;
    border-bottom-right-radius: 0px;
    display: inline-block;
    animation: wow 5s linear infinite;
}

@keyframes wow {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(800px);
    }
}

.Truck-wheel1,
.Truck-wheel2 {
    position: absolute;
    width: 50px;
    height: 50px;
    background: black;
    border: 10px solid white;
    border-radius: 100%;
    display: inline-block;
    margin-top: -1.2em;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        transform: translateX(0px);
    }

    100% {
        transform: rotate(360deg);
        transform: translateX(800px);
    }
}

.Truck-wheel1 {
    margin-left: 1em;
}

.Truck-wheel2 {
    margin-left: 11em;
}

.imgt {
    width: 50px;
    margin-left:0em;
    margin-top: 0em;
    animation: rotae 5s linear infinite;
}

@keyframes rotae {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.txttruck {
    text-align: center;
    margin: auto;
    margin-top: 10px;
    margin-left: 50px;
    color: white;
    font-size: 30px;
}

.txttruck2 {
    text-align: center;
    margin: auto;
    margin-top: 1px;
    margin-left: 90px;
    color: white;
    font-size: 16px;
}
