    @import url('https://fonts.googleapis.com/css2?family=Poppins&family=Staatliches&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        font-size: 16px;
    }

    body {
        line-height: 1.5;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        color: #00283c;
    }

    #boven {
        background-color: #fff;
    }

    main {
        max-width: 1200px;
        margin: 0 auto;
        border: 1px solid #ccc;
        box-shadow: 0px 0px 3px #ccc;
        background-color: #fff;
    }

    p,
    h2,
    h3 {
        padding: 10px;
        margin: 10px;
    }

    header,
    footer {
        max-width: 1200px;
        margin: 0 auto;
    }

    header h1 {
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
    }

    header h1 span {
        display: none;
    }

    .accent {
        background-color: #fa6432;
    }

    .accent2 {
        color: #fa6432;
        font-weight: bold;
    }

    footer h2 {
        display: none;
    }

    footer ul {
        list-style-type: none;

    }

    footer li {
        display: flex;
        padding-left: 10px;
        margin-right: 10px;
    }

    footer li a {
        padding: 10px;
        flex: 100%;
        background-color: #fa6432;
        color: #fff;
        text-decoration: none;
    }


    footer li a:hover {
        background-color: #fa6432;
        text-decoration: underline;
    }

    main img {
        max-width: 100%;
        height: auto;
    }

    main a {
        color: #fa6432;
        font-weight: bold;
    }

    .figure {
        position: relative;
    }

    .banner {
        height: 250px;
        background-image: url(banner.jpg);
        background-size: cover;
        background-position: center center;
    }

    .figcaption {
        position: absolute;
        width: 100%;
        color: #00283c;
        top: 50%;
        text-align: center;
        font-weight: bold;
        font-size: 2.5rem;
    }

    footer ul {
        display: flex;
        background-color: #00283c;
        justify-content: flex-end;
    }

    footer li {
        display: flex;
        background-color: #00283c;
    }

    footer li a {
        background-color: #00283c;
    }

    #afbeelding,
    #image {
        width: 400px;
        margin: 50px auto;
        padding: 10px;
    }

    #afbeelding h2,
    #image h2 {
        margin-bottom: 0;
        font-size: 2rem;
        padding-bottom: 0;
    }

    #afbeelding img,
    #image img {
        border: 1px solid #ccc;
        box-shadow: 2px 2px 2px #ccc;
    }


    body {
        position: relative;
        min-height: 100vh;
        padding-bottom: 50px;
    }

    footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        /* text-align: center;*/
        min-height: 50px;
    }


    @media screen and (min-width:700px) {
        header h1 span {
            display: inline;
        }

        header h1 {
            flex-direction: row;
            justify-content: space-between;
        }


    }

    @media screen and (min-width:1200px) {

        nav h3 {
            display: none;
        }

        .accent {
            background-color: #00283c;
        }

        #nl,
        #en {
            display: flex;
        }

        #nl section:nth-child(1),
        #en section:nth-child(1) {
            flex-basis: 800px;
            padding-right: 50px;
        }

        #nl section:nth-child(2),
        #en section:nth-child(2) {
            margin-top: 0;
            flex-basis: 400px;
            margin-right: 50px;
        }

    }
