@font-face {
    src: url("../Fonts/GROBOLD.ttf");
    font-family: customfont;
  }
  *{
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  p, a{
    font-family: customfont;
  }
  /* Header */
.header{
    width: 100%;
    height: 15vh;
    background-color: #0016e6;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header a{
    color: #fff;
    margin: 0 5%;
    transition: all 0.2s ease-in-out 0s;
    font-size: 2vw;
}
.header a:hover{
    transform: rotate(3deg);
    color: #ff7b00;
  }
/* Hoofd Pagina */
.hoofdpagina{
    height: 85vh;
    background-image: url('../Img/Background.png');
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: -1;
}
.ksalutlommel{
  width: 50%;
  margin: 0% 25%;
  padding-top: 8vh;
}
.logo{
  width: 40%;
  margin: 0% 30%;
}
.logo img{
  width: 100%;
}
.ksalutlommel p{
  font-size: 4vw;
  color: #ff7b00;
  text-shadow: 5px 5px 5px rgb(26, 26, 26);
  text-align: center;
  position: relative;
  z-index: -1;
}
.bottom_wave{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.bottom_wave img{
    width: 100%;
    display: block;
}
/* Over Ons */
.over_ons{
    background-color: #0011b3;
}
.darkwave_top img{
    width: 100%;
}
.tekst, .fotos{
    width: 40%;
    aspect-ratio: 1/1;
    display: inline-block;
    text-align: center;
    margin: 0% 4%;
    font-size: 2vw;
    color: #fff
}
.fotos{
  background-image: url("../Img/Orange_Blob.png");
  background-size: cover;
}
.fotos img{
  transition: transform .2s;
  border-radius: 39% 61% 70% 30% / 43% 49% 51% 57% ;
  width: 70%;
  margin: 15%;
}
.fotos img:hover{
  transform: scale(1.1);
}

/*Slideshow*/
.mySlides {
  display: none;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
} 
  .mixed_waves img{
    width: 100%;
  }


/* contact */
.contact_tekst, .maps{
    display: inline-block;
    width: 40%;
    aspect-ratio: 1/1;
    margin: 5%;
}
.maps{
    float: right;
    border: 3px solid rgb(150, 150, 150);
}
.contact_tekst{
    text-align: center;
    color: #0011b3;
}
.contact_tekst p{
  font-size: 2vw;
}
.left_text{
  text-align: left;
}
.bottom_waves img{
    width: 100%;
    display: block;
}
@media screen and (max-width: 1100px){
  .header a{
    font-size: 4vw;
  }
  .hoofdpagina{
    height: 60vh;
  }
  .ksalutlommel{
    width: 80%;
    margin: 0% 10%;
  }
  .ksalutlommel p{
    font-size: 6vw;
  }
  .bottom_wave{
    display: none;
  }
.tekst, .fotos{
    display: block;
  }
  .tekst{
    width: 70%;
    aspect-ratio: 0;
    margin: 0 15%;
  }
  .tekst p{
    font-size: 3vw;
  }
  .fotos{
    width: 56%;
    margin: 4% 22% 0%;
  }

  .contact_tekst{
    display: block;
    width: 80%;
    margin: 5% 10%;
    aspect-ratio: 0;
  }
  .contact_tekst p{
    font-size: 3vw;
  }
  .maps{
    width: 50%;
    margin: 0% 25% 5% 0%;
  }
  
}
@media screen and (max-width: 750px){
  .ksalutlommel{
    width: 100%;
    margin: 0;
  }
  .tekst{
    width: 96%;
    margin: 0% 2%;
  }
  .fotos{
    width: 80%;
    margin: 10% 10% 0%;
  }
  .tekst p{
    font-size: 4vw;
  }
  .contact_tekst{
    width: 90%;
    margin: 5%;
  }
  .contact_tekst p{
    font-size: 4vw;
  }
  .maps{
    width: 98%;
    margin: 1%;
    aspect-ratio: 2/1;
  }
}