/* Basis reset om witruimte te voorkomen */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}
div.bg {
    background-color: #07377a;
    background-image: linear-gradient(135deg, #666666 30%, #ffffff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0px;
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 0;
}

.full-page-bg {
    /* Achtergrondafbeelding */
    background-blend-mode: multiply;
    background-color: #07377a;
    background-image: linear-gradient(135deg, #666666 30%, #ffffff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0px;
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 0;




}

.full-page-bg img {
    height: 100%;
    max-width: 100%;
    mix-blend-mode: hard-light;
    object-fit: cover;
    object-position: 55%;
    opacity: 0.2;
    width: 300%;
}

.hoofd {
    position: relative;
    z-index: 1;
}



.content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    position: relative;
    text-align: center;
    color: white;
    z-index: 1; /* Zorgt dat tekst boven de overlay staat */
    right: 10%;
}

.content .tekst {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
}

.content .tekst img {
    height: auto;
    width: 300px;
}

.content .tekst .contact {
    text-align: left;
        display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.content .tekst .contact  a {
    color: white;
}

@media (max-width: 700px) {
    h1 { font-size: 25px; }
    .content { right: 0px; }
    .full-page-bg img {  object-position: 58%; }
}