
<style>
body  {
    margin: 0;
    box-sizing: content-box;
    font-family: 'calibri', serif;     /* set font globally */
    background-color: #E6CDB5 /* set background color globally */
    color: #0088FF;                  /* set font color globally */
}
h2 {
    display: block;
    font-size: 40px;
    margin: 0px, 0.67px, 0, 0;
    font-weight: bold;
    text-align: center;
}
a {
    text-decoration: none;
    color: #350000;
}
.header {
    font-size: 40px;
    padding: 60px;    /* top right bottom left */
    text-decoration: none;
    text-align: center;
    background: #CCE7FF;
    width: 100%;
}
.left {
    float: left;
    width: 140px;
    padding: 0px 20px 0px 50px;     
}
.content {
    padding: 30px 100px 30px 100px; 
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    background-color: #CCE7FF;
}
.info {
    padding: 50px 200px 0px 200px; 
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.footer {
    padding: 200px 20px 0px 0px;
    color: black;
    text-align: bottom; 
}


/* Stijl voor het menu onder de header */
.center {
  position: fixed; /* Maak het menu gepositioneerd (vast) */
  top: 0px; /* Plaats het menu 60px onder de bovenkant van de pagina (gelijk aan de hoogte van de header) */
  left: 0;
  right: 0;
  width: 100%; /* Zorg ervoor dat het menu de volledige breedte van de pagina inneemt */
  background-color: #CCE7FF; /* Achtergrondkleur van het menu */
  z-index: 999; /* Zorg ervoor dat het menu boven alle andere elementen staat */
  text-align: center; /* Centreer de tekst in het menu */
  margin: 0 auto; /* Horizontaal centreren */
}

/* Stijl voor de knoppen in het menu */
.center ul {
  list-style-type: none; 
  padding: 0; 
  margin: 0;
}

.center li {
  display: inline-block; 
  margin-left: 20px; /* Ruimte tussen de knoppen */
}

.center li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

/* Bij hover-effect voor de knoppen */
.center li a:hover {
  color: #FFFF9F; /* Verander de kleur van de tekst bij hover */
}


ul {
    list-style-type: none;
    padding: 5px 5px;
    text-align: center;
}

li a:hover:not(.active) {
    background-color: #fca568; /* achtergrond menu */
    color: #F9FBFF;
    border-radius: 5px;
}
.container {
  position: relative;
   margin: 0 auto;
}

/* Style for the button when hovered */
button:hover {
  background-color: #FFFF9F;
}
figure {
    margin: 20px; /* adjust as needed */
    text-align: left;
}
img {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-wrap: wrap; /* Allow images to wrap to the next line */
  margin: auto;
}
figure img {
    vertical-align: top;
    max-width: 100%; /* Ensure the images don't exceed the figure's width */
    height: auto; /* Maintain the aspect ratio of the images */
    border: 5px inset #555;
}
figure figcaption {
    text-align: center;
}
/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow:hidden;
}

/* Make the images invisible by default */
.Containers {
  display: none;
  text-align: center;
  height: 400px; /* Stel de hoogte in zoals gewenst */
  width: 100%; /* Zorg ervoor dat het de volledige breedte van de container gebruikt */
}

}
.Containers:first-child {
  display: block;
}
.Containers img {
  width: 100%;
  display: inline-block;
  float: none;
  height: 100%;
  object-fit: cover; /* Zorgt ervoor dat de afbeelding de container vult zonder vervorming *
}

/* forward & Back buttons */
.Back, .forward {
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  margin-top: -23px;
  padding: 10px;
  color: grey;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 5px;
  user-select: none;
  z-index: 100;
}

/* Place the "forward button" to the right */
.forward {
  right: 0px;
  border-radius: 5px 0px 0px 5px;
}

/*when the user hovers,add a black background with some little opacity */
.Back:hover, .forward:hover {
  background-color: rgba(0,0,0,0.4);
}

/* Caption Info */
.Info {
  font-size: 16px;
  padding: 0px 14px 0px 0px;
  position: absolute;
  bottom: -100px;
  width: 100%;
  text-align: center;
}

/* Worknumbering (1/3 etc) */
.MessageInfo {
  color: #f2f2f3;
  font-size: 14px;
  padding: 10px 14px;
  position: absolute;
  top: 0;
}



@-webkit-keyframes fade {
  from {opacity: .5}
  to {opacity: 2}
}

@keyframes fade {
  from {opacity: .5}
  to {opacity: 2}

@media only screen and (max-width: 390px) {
  /* Voeg hier CSS-regels toe voor schermen met een maximale breedte van 390px, bijvoorbeeld voor iPhones */
  
  /* Maak de tekstgrootte kleiner voor betere leesbaarheid */
  .content {
    padding: 10px 20px; 
    font-size: 12px; 
    text-align: left; /* Tekst links uitlijnen */
  }

  /* Pas de lay-out aan voor een enkelvoudige kolom op kleinere schermen */
  .container {
    flex-direction: column; 
  }
  
  /* Koppen en headers links uitlijnen */
  h2, .header {
    text-align: left;
  }

  /* Voettekst links uitlijnen */
  .footer, #Copyright, #Insta, .MessageInfo {
    text-align: left;
  }
  
  /* Inhoud links uitlijnen */
  .info {
    text-align: left;
  }
}
