body {
    background-color: #0a0a0a;
}

main {
    min-height: auto;
    margin: 0;
    padding-bottom: 50px;
    border-bottom: grey 1px solid;
}

.breedte {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.rodestreep {
    margin-top: 0;
    padding-top: 50px;
    color: #d92027;
    font-family: Inter, sans-serif;
    font-weight: bolder;
    display: flex;
    justify-content: flex-start;
}

.rodestreep span {
    display: inline;
    width: 50px;
    height: 4px;
    background-color: #d92027;
    margin: auto 5px auto 0;
}

h1 {
    margin: 0;
    font-family: 'Antonio', sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    color: #d92027;
    line-height: 0.95;
}

h1 span {
    color: white;
}

#maintekst {
    color: #9D9D9D;
    font-family: Inter, sans-serif;
    line-height: 1.2;
    width: 100%
}

#filter {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: auto;
    border-bottom: grey 1px solid;

}

#filter button {
    min-width: 120px;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Antonio', sans-serif;
    font-weight: bold;
    font-size: 1em;
    color: white;
    background: none;
    border-radius: 8px;
    border: 1px #424242 solid;
}

#filter button span {
    font-weight: normal;
}

#filter button.active {
    background-color: #d92027;
}

table, #no-standings {
    margin: 20px auto;
    padding: 20px;
    color: white;
    width: 90%;
    font-family: 'Antonio', sans-serif;
    background-color: #111111;
    border: 1px solid #333333;
    text-align: center;
    border-radius: 5px;
}

td, th {
    border-bottom: 1px solid #333333;
}

th img {
    width: 50%;
    max-width: 500px;
}

@media (min-width: 768px) {
    table, #no-standings {
        font-size: 1.2em;
    }
}


    @media (min-width: 1500px) {
        .breedte {
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-end;
        }

        .rodestreep {
            padding-top: 90px;
        }

        h1 {
            font-size: 3em;
        }

        #maintekst {
            font-size: 1.25em;
        }

        table, #no-standings {
            width: 50%;
        }


    }
