*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img{
    max-width: 100%;
    display: block;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    background-color: #c3a6a5;  
}

h2, h3, p{
    font-family: 'Kaushan Script', cursive;
    color: #000;
}

.intro{
    padding: 30px;
}

nav{
    background-color: #c3a6a5;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
    display: flex;
    z-index: 9999;
    padding: 10px 20px;
}

nav a{
    text-decoration: none;
    font-size: larger;
}
nav a:hover{
    text-decoration: underline;
    font-weight: bold;
}

.buffer{
    margin: 0 auto;
    max-width: 1300px;
}

.banner{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
}

.ankers{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    top: 0;
    left: -100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    z-index: 9;
    transition: 0.3s;
}

.ankers a{
    padding: 15px;
    color: white;
}

.ankers.open{
    left: 0;
}

.humburger{
    width: 40px;
    cursor: pointer;
    justify-content: space-between;
    z-index: 10;
    display: flex;
    flex-direction: column;
    position: relative;
}

.lijn{
    background-color: black;
    height: 6px;
    width: 40px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.block{
    padding: 20px 10%;
    background: #6c5050;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block img{
    width: 40%;
    height: auto;
}

header{
    position: relative;
    height: 100vh;
}
.hero-video{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.formulier {
    width: 50%;
    padding: 10px;
}

footer{
    background-color: #8f6f6f;
    font-size: smaller;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-wrap{
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

footer a{
    text-decoration: none;  
}

footer a:hover{
    text-decoration: underline;
}


.footer-wrap div {
    flex: 1 0 calc(25% - 30px);
    text-align: center;
    flex-direction: column;
}

@media (min-width: 600px){
    .humburger{
        display: none;
    }

    .ankers{
        position: static;
        height: auto;
        flex-direction: row;
        width: auto;
        background-color: transparent;
        left: 0;
    }

    .ankers a{
        color: black;
        padding: 10px 10px;
    }
   
    .block{
        flex-direction: row;
        text-align: left;
    }

    .block img{
        width: 20%;
        margin: 5px;
        padding: 5px;
    }

    footer{
        height: auto;
    }

}