
:root {
    --color-car-body: #ff6a00;
    --color-bg-1: #e4ffff;
}

html {
    height: 100%;

}

.car-road {
    position: absolute;
    left: -375px;
    z-index: 100;
    transform: scale(0.5);
    color: var(--color-car-body);
    bottom: 40px;

}

.car__top {
    margin-left: 50px;
    width: 120px;
    height: 70px;
    transform: skew(-10deg);
    border: 15px solid #4a4c48;
    border-radius: 5px;
    border-right: 0;
    box-sizing: border-box;
}

    .car__top::after {
        content: '';
        position: absolute;
        top: -15px;
        right: 0;
        width: 50px;
        height: 100%;
        transform: translateX(120%) skew(50deg);
        border: 15px solid #4a4c48;
        border-left: 0;
    }

    .car__top::before {
        content: '';
        position: absolute;
        top: -1.1px;
        right: 0;
        width: 80px;
        height: 100%;
        transform: translateX(70%) skew(10deg);
        border: 15px solid #4a4c48;
        border-right: 0;
        border-top: 0;
    }

.car__body {
    width: 375px;
    height: 90px;
    background-color: var(--color-car-body);
    border-radius: 50px;
    margin-top: -7.5px;
    position: relative;
    z-index: 10;
}

.car__bulb {
    position: absolute;
    top: 14%;
    right: 2%;
    width: 10px;
    height: 20px;
    border-radius: 10px / 14px;
    transform: rotate(-40deg);
    background-color: #fff;
}

.car__bulb--back {
    top: 14%;
    left: 2%;
    transform: rotate(35deg);
    background-color: #d14022;
}

.car__center {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 10px;
    border-radius: 10px;
    background-color: #fff;
}

.car__wheels {
    display: flex;
    justify-content: space-around;
    margin-top: -45px;
    position: relative;
    z-index: 200;
}

.car__wheel {
    --r: 90px;
    width: var(--r);
    height: var(--r);
    border-radius: 50%;
    border: 12px solid #323232;
    background-color: #fff;
    position: relative;
    box-sizing: border-box;
}

.wheel__circle {
    --r: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--r);
    height: var(--r);
    border-radius: 50%;
    background-color: #323232;
}

.wheel__rect {
    position: absolute;
    width: 14px;
    height: 16px;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
    background-color: #323232;
}

.wheel__rect--1 {
    top: 30%;
    left: 35%;
    transform: translate(-50%, -50%) rotate(-40deg);
}

.wheel__rect--2 {
    top: 30%;
    left: 64%;
    transform: translate(-50%, -50%) rotate(35deg);
}

.wheel__rect--3 {
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.wheel__rect--4 {
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.wheel__rect--5 {
    top: 70%;
    left: 35%;
    transform: translate(-50%, -50%) rotate(-145deg);
}

.wheel__rect--6 {
    top: 70%;
    left: 64%;
    transform: translate(-50%, -50%) rotate(146deg);
}
