:root {
    --background: black;
    --color: #6495ed;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

span {
    display: inline-block;
    width: fit-content;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.writec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 40px;
    background-color: antiquewhite;
}

.left {
    width: 50%;
    height: 100%;
    background-color: red;
}

.writec>.right,
.left {
    width: 50%;
    height: 100%;
    overflow: hidden;
    background-color: black;
    position: relative;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;

}

.left {
    flex-direction: row-reverse;
    border: 1px solid red;
    color: white;
}

.left>span.false {
    color: red;
}

.left>span.true {
    color: green;
}

.false {
    color: red;
}



.content2 {
    width: 100%;
    background-color: rgb(104, 125, 118);
    height: 100px;
}

.street {
    width: 100%;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.street>.line {
    position: absolute;
    width: 20%;
    height: 10px;
    background-color: white;
    left: 0px;
    top: 50%;
    transform: translate(0px, -50%);
}

.line.line1 {
    left: 0px;
}

.line.line2 {
    left: 25%;
}

.line.line3 {
    left: 50%;
}

.line.line4 {
    left: 75%;
}

.line.line5 {
    left: 100%;
}

.line.line6 {
    left: 125%;
}

.car {
    width: max-content;
    height: max-content;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0px, -50%);
}

.car img {
    width: 10%;
}