html
{
    font-size:20px;
}

body {
    background-color: #98c8bf;
    font-family: 'Open Sans', sans-serif;
}

body.home
{
    font-size:16px;
}

img {
    width: 100%;
}

h1
{
    color:#01467f;
    font-size: 2rem;
}

h2
{
    color:#01467f;
    font-size: 1.5rem;

}

p
{
    margin-bottom: 2rem;
}

a{
    font-weight: bold;
    color:#000;
    text-decoration: none;
}

.wrapper {
    min-width: calc(100vw - 4rem);
    min-height: calc(100vh - 4rem);
    margin: 2rem;
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
}


.home_wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
}

.home_logo {
    width: 20vw;
}

.home_menu {
    width: 20vw;

}

.home_content_wrapper
{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    width:50vw;
    background-color: #edf9f7;
    border-radius: 1rem;
    padding: 2rem;
}

.home_content {

    text-align: center;
    font-size: 1.5rem;
}

.home_logos
{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.logo_col
{
    flex:1;

}


/* lopende pagina's werken niet met vw/vh */
header {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 8rem;
    gap: 2rem;
}

.header-menu
{
    color:#01467f;
    font-weight: bold;
}

.header-menu a{
    text-decoration: none;
    color:#01467f;
}

main
{
    max-width: 1190px;
    margin: 0 auto;
}

.img-banner
{
    margin-bottom:2rem;
}

.button
{
    text-decoration: none;
    color:#01467f;
    background-color: #98c8bf;
    border-radius: 1rem;
    padding: 1rem;
    font-weight: bold;
    display: inline-block;

}

.icon-table
{
    width:100%;
    margin-top: 2rem;
}

.icon-table .row
{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.icon-table .icon
{
    width: 125px;
}

.icon-table .description
{
    width: calc(100% - 125px);
}

@media screen and (max-width: 650px) {
    html
    {
        font-size:16px;
    }

    h1
    {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .wrapper {
        min-width: calc(100vw - 2rem);
        min-height: calc(100vh - 2rem);
        margin: 1rem;
        background-color: #fff;
        border-radius: 1rem;
        padding: 1rem;
    }

    .home_wrapper
    {
        display: block;
        width: 100%;
    }

    .home_menu
    {
        display: block;
        width: 100%;
    }

    .home_content_wrapper
    {
        margin-top: 2rem;
        display: block;
        width: 100%;
    }

    .home_content{
        display: block;
        width: 100%;
    }

    .home_logos
    {
        display: block;
        width: 100%;
    }

    .logo_col img
    {
        margin-bottom: 2rem;
    }


    .icon-table .row
    {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-table .icon
    {
        width: 100%;
    }

    .icon-table .icon
    {
        width: 125px;
    }

    .icon-table .description
    {
        width: 100%;
    }
}