* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#section1 {
    display: flex;
    margin-top: 20px;
    place-content: center;
}

button {
    width: 140px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    background-color: #f0f0f0;
    border: 1px solid #999;
    border-radius: 4px;
}

button:hover {
    background-color: #e0e0e0;
}

#buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    place-content: center;
    gap: 20px;
}

#points {
    margin-top: 20px;
    width: 80%;
    background-color: #DADADA;
    margin-left: 10%;
    height: 300px;
    border: 1px solid black;
    position: relative;
    overflow: hidden;
    
    background-image: linear-gradient(to right, transparent, transparent 100%),
                      linear-gradient(to bottom, #DADADA 50%, #C0C0C0 50%, #C0C0C0 100%);
}


.bus {
    position: absolute;
    width: 220px;
    height: auto;
    left: 0;
}


.brasilia-bus {
    top: 30px; 
}


.coopetran-bus {
    top: 150px; 
}

.winner-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
}


#points::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: red;
    z-index: 5;
}

#a{
    display: flex;
    flex-direction: row;
    place-content: center;
    gap:20px;
}