
body {
    background-color: #f6f4de;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Computer*/


.banner {
    display: grid;
    grid-template-columns: repeat(6,auto);
    grid-template-rows: auto auto;
}

.box1 {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 6;
}

.image_1 {
    position: relative;
    z-index: 2;
    grid-row: 1;
    grid-column: 3;
    padding-top: 20px;
    grid-gap: none;
}

.image_2 {
    position: relative;
    z-index: 1;
    grid-row: 1;
    grid-column: 2;
    padding-top: 20px;
    grid-gap: none;
}

.image_3 {
    position: relative;
    z-index: 4;
    grid-row: 1;
    grid-column: 5;
    padding-top: 20px;
    grid-gap: none;
}
.image_4 {
    position: relative;
    z-index: 3;
    grid-row: 1;
    grid-column: 4;
    padding-top: 20px;
    grid-gap: none;
}

.box2 {
    grid-row: 2;
    grid-column: 1/7;
    text-align: center;
    font-family: "Special Elite", system-ui;
    font-weight: 900;
    font-style: normal;
    padding-top: 50px;
    color: #484b82;
    font-size:48px;
}

.inhoud {
    display: grid;
    grid-template-columns: auto auto;
    grid-row: auto auto auto;
    grid-gap: 10px;
    padding-top: 70px;
}

.image_5 {
    grid-row: 1;
    grid-column: 1;
    border: none;
    width: 70%;
    height: auto;
    margin-left: 100px;
    margin-bottom: 0;
}

.image_6 {
    grid-row: 2;
    grid-column: 1;
    border: none;
    padding-top:20px;
    width: 70%;
    height: auto;
    margin-left: 100px;
}

.box4 {
    padding-left: 50px;
}


.box5 {
    grid-row: 2;
    grid-column: 1;
    width: 70%;
    height: 300px; 
    margin-left: 100px;
    margin-top: 0;
    padding: 0;
}

iframe {
    width: 100%;
    height: 100%; 
    display: block;
}

.inleiding {
    grid-row: 1;
    grid-column: 2;
    margin-right: 100px;
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight:600;
    font-style:normal;
    color:black;
}

.box7 {
    grid-row: 3;
    grid-column: 1/3;
    justify-self: center;
    padding: 60px;
    font-size: 0.8em;
    font-family: "Roboto Flex", sans-serif;
}

.tekst {
    grid-column: 2;
    grid-row: 1;
    font-family: "Roboto Flex", sans-serif;
    margin-right: 100px;

}

p {
    padding-top: 20px;
} 

h2 {
    font-family: "Special Elite", system-ui;
    font-weight: bold;
    font-style: normal;
    font-size: larger;
    padding-top: 50px;
    color: #484b82;
    
}

ul {
    list-style: square;
    padding: 10px 0px;
    width: 60%;
    padding-top: 50px;
    list-style-type: circle;
    font-family: "Roboto Flex", sans-serif;
    color:black;
}

a:hover {
    text-decoration: underline;
    color: #484b82;
}

@media screen and (max-width:700px){

    .container {
        grid-template-columns: 1fr;
    }

    .box {
        grid-column: 1 / -1;
    }

    .box1 {
        order: 1;
    }

    .box2 {
        order: 2;
    }

    .box3 {
        order: 3
    }

    .box5 {
        order: 4;
    }

    .box4 {
        order: 5;
    }

    .box6 {
        order: 6;
    }

    .box7 {
        order: 7;
    }
}