body {
    background-color: #89b19f
}

h1{
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    color: #004466;
}

h2{
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: #2b6942;
    margin-bottom: 25px;
    text-align: center;
    text-decoration: underline;
}

h3{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 900;
    font-style: normal;
}

p {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 5px 10px 20px 10px;
    line-height: 24px;
  }

iframe{
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 5px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    text-align: justify;
    text-decoration: none;
    color: #ffffff;
    background-color: #005a3d;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #008060;
    transform: scale(1.05);
}

.btn:active {
    background-color: #008060;
    transform: scale(0.95);
}

.container{
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2px;
}

.box{
    margin: 10px;
}

.box1{
    grid-column: 1/3;
    position: relative;
    justify-items: center;
}

.box2{
    grid-column: 1/3;
    text-align: center;
    padding: 10px;
}

.box3 img{
    width: 100%;
}

.box4{
    text-align: justify;
}

.box7{
    grid-column: 1/3;
    text-align: center;
}

@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;
    }
}

.omslag{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    position: relative;
}

.foto {
    width: 26%; 
}

.foto:nth-child(2) {
    z-index: 2; 
    margin-left: -20px; 
}

.foto:nth-child(3) {
    z-index: 3; 
    margin-left: -40px; 
}

.foto:nth-child(4) {
    z-index: 4; 
    margin-left: -60px; 
}