#race-lijst {
   padding-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
    padding-bottom: 20px;
}

.race-item {
    color: white;
    width: 90%;
    font-family: 'Antonio', sans-serif;
    background-color: #111111;
    border: 1px solid #333333;
    padding: 10px;
}

.race-item p {
    display: flex;
    align-items: center;
    color: #9D9D9D;
    font-family: Inter, sans-serif;
}

.race-item img {
    width: 25px;
}

.groene-lijn {
    display: block;
    width: 90%;
    background-color: #00b050;
    height: 2px;
}

.rode-lijn {
    display: block;
    width: 90%;
    background-color: #d92027;
    height: 2px;
}

p.upcoming-groen {
    color: #00b050;
    font-weight: bold;
}

p.completed-rood {
    color: #d92027;
    font-weight: bold;
}

@media (min-width: 768px) {
    #race-lijst {
        padding-top: 150px;
    }

    .race-item {
        width: 300px;
    }
}