/*---------------------------------Toevoegen Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*---------------------------------Algemene Text opmaak*/
html {
    font-size: 16px;
}

a {
    text-decoration: none;
}

H1 a {
    color: white;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 150%;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

h2 {
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 400%;
    font-weight: 700;
}

h3 {
    color: #a9a9a9;
    font-family: "Roboto", sans-serif;
    font-size: 150%;
}

h4 {
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 112.5%;
}

p {
    color: #a9a9a9;
    font-family: "Roboto", sans-serif;
    font-size: 100%;
}

/*---------------------------------header*/
header {
    background-color: #191919;
    height: 100%;
    position: relative;
    height: 100px;
}

header .flexcontainer {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .card {
        padding-top: 20px;
    }
}

#topnav {
    margin: 25px;
    width: 100%;
}

#topnav ul {
    display: flex;
    text-decoration: none;
    justify-content: space-around;

}

#topnav li {

    a {
        text-decoration: none;
        font-size: 112.5%;
        font-family: "Roboto", sans-serif;
        color: #a9a9a9;
        padding: 10px;
    }


    .active {
        color: white;
        text-decoration: none;

    }
}

/* Footer */
footer {
    background-color: #212121;

    .flexcontainer {
        display: flex;
        flex-direction: column;
    }

    .card {
        justify-content: center;
    }

    h2 {
        font-size: 150%;
        padding: 30px 0 10px 10px;
    }

    h4 {
        text-align: center;
        padding-top: 5px;
    }

    P {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    img {
        width: 100vw;
    }
}

/* Opmaak vanaf 1000px */
@media screen and (min-width:1000px) {

    .flexcontainer,
    .gridcontainer {
        max-width: 1000px;
        margin: 0 auto;
    }
}