main {
    background-color: #0a0a0a;
    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 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

#filter img {
    width: 30px;
}

#filter input {
    background-color: #121212;
    border: grey 1px solid;
    color: white;
    font-size: 1.1em;
    padding: 8px 15px 8px 8px;
    border-radius: 5px;
}

label {
    display: none;
}

#drivers {
    background-color: #0a0a0a;
    min-height: calc(66vh - 70px);
    height: auto;
    position: relative;
    padding: 20px 0;
}

    @media (min-width: 768px) {
        .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;
        }

        #drivers {
            min-height: 80vh;
        }


    }
