/* Reset standaardmarges en -vullingen voor de hele pagina */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;

    font-family: Arial, sans-serif;
    /*margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;*/ /* Hides the body scrollbar */
}

.background {
    background-image: url('images/Achtergrond.png'); /* Replace 'background.jpg' with your image */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.background {*/
/*    position: relative;
*/    /*width: 100vw;
    height: 100vh;
    overflow: hidden;
}*/

 /* .background img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}  */

/* Plaats de bovenste afbeelding bovenaan in het midden */
.centered-image.top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
	max-width: 90%;
	min-width: 80%;
    width:100%;
    z-index: 1;
 }
 
 .centered-image.top img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
 }

 .centered-image.bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
 }

/* Plaats de onderste afbeelding onderaan in het midden */
.centered-image.bottom {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
	max-width: 30%;
	min-width: 10%;
    z-index: 1;
}

.centered {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow:hidden;
}

.centered-scroll {
    height: 100%;
    overflow-y: scroll; /* Enable vertical scrolling */
    padding-right: 17px; /* Add padding to account for scrollbar width */
}

.container {
    width: 80%; /* Adjust width as needed */
    height: 70%; /* Adjust height as needed */
    margin: 5px;
    border: 0px solid #ccc;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    overflow: auto; /* Enables scrolling */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    z-index: 2;
}

.container::-webkit-scrollbar { /* WebKit browsers */
    display: none;
}

.content {
    padding: 10px;
    text-align: center;
    justify-content: center;
}

/*.content {
    height: 100%;
    margin: 20%;
    z-index: 1;
    text-align: center;
    background-color: white;
    opacity: 70%;
    padding: 20px;
    border-radius: 20px;
}
*/
.menu {
    background-color: #333;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu ul li {
    display: inline-block;
    margin-right: 20px;
}

.menu ul li:last-child {
    margin-right: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    display: block;
}

.menu ul li a:hover {
    background-color: #555;
}

.image-container {
    height: 80%; /* Adjust width as needed */
    overflow: hidden; /* Ensure the shadow doesn't overflow */
    border-radius: 10px; /* Adjust border radius as needed */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Adjust shadow properties as needed */
    max-width: 80%;
    max-height: 80%;
}
.image-container img {
    width: 100%;
    height: 100%;
    display: block;
    }

.image-container2 {
    overflow: hidden; /* Ensure the shadow doesn't overflow */
    border-radius: 10px; /* Adjust border radius as needed */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Adjust shadow properties as needed */
    width:80%;
    margin-left: 10%;
}
.image-container2 img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-container3 {
    overflow: hidden; /* Ensure the shadow doesn't overflow */
    border-radius: 10px; /* Adjust border radius as needed */
    width:80%;
    margin-left: 10%;
}
.image-container3 img {
    width: 100%;
    height: 100%;
    display: block;
}

.no-bullets {
    list-style-type: none; /* Remove default bullet style */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
  }

  /* Optional: Style list items */
  .no-bullets li {
    margin-bottom: 10px; /* Add some space between list items */
  }

  .link-container a {
    text-decoration: none; /* Remove underline */
    color: #000000; /* Default link color */
    transition: box-shadow 0.3s;
  }

  /* Optional: Hover effect */
  .link-container a:hover {
    color: #000000; /* Change color on hover */
    /* box-shadow: 0 0 5px #000000; */
    font-size: larger;
    font-weight: bold;
  }

 .fade-out {
    transition: opacity 1s ease;
    opacity: 1;
}

.fade-out.hidden {
    opacity: 0;
}

.fade-in {
    transition: opacity 1s ease;
    opacity: 0; /* Start with opacity 0 */
}

.fade-in.show {
    opacity: 1; /* Opacity 1 when the show class is added */
}

.large{
    font-size: larger;
}