body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: #87CEEB;
}

.road {
    position: relative;
    width: 80vw;
    height: 100px;
    background: gray;
    border-top: 10px solid white;
    border-bottom: 10px solid white;
    overflow: hidden;
}

.car {
    position: relative;
    bottom: 10px;
    width: 200px; /* Adjusted for better scaling */
}

.loading-container {
    width: 80vw;
    height: 20px;
    background: lightgray;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    height: 100%;
    width: 0;
    background: green;
    transition: width 0.1s linear;
}

.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
}
