@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.side-logo {
    position: fixed;  
    top: 50%;         
	transform: translateY(-50%); 
}


/*
.left-logo {
    left: 0;      
}
*/

.left-logo {
    position: fixed;
    left: 50px;  /* Geeft 20px afstand van de linker rand. Pas dit naar wens aan */
    top: 50%;
    transform: translateY(-50%);
    width: 10%; /* Percentage van de vensterbreedte. Pas dit naar wens aan */
    max-width: 175px; /* Maximale breedte van de afbeelding. Pas dit naar wens aan */
    /* andere stijlen */
}

.right-logo {
    position: fixed;
    right: 130px; /* Geeft 20px afstand van de rechter rand. Pas dit naar wens aan */
    top: 50%;
    transform: translateY(-50%);
    width: 10%; /* Percentage van de vensterbreedte. Pas dit naar wens aan */
    max-width: 175px; /* Maximale breedte van de afbeelding. Pas dit naar wens aan */
    /* andere stijlen */
}

/*

.right-logo {
    right: 0;     
}
*/


body.fade-out {
    animation: fadeOutAnimation 1s ease-in-out forwards;
}

@keyframes fadeOutAnimation {
    to {
        opacity: 0;
        visibility: hidden;
    }
}  
  
 body {
      margin: 0;
      padding: 0;
      font-family: 'Roboto', Helvetica, Arial, sans-serif;
	  background-color: #000000;
      background-repeat: no-repeat;
	  background-position: center center;
	  background-attachment: fixed;
	  background-size: 20%;
	  position: relative;
   }
	
.fade-in {
	animation: fadeInAnimation 1s ease-in-out forwards;
    opacity: 120;
	}

	
	@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
    
h1 {
      text-align: center;
	  cursor: context-menu;
    }
	
h2 {
	 white-space: normal;
     cursor: context-menu;
	}
	
#jaargang
	{
		font-size: 25px;
		padding-top: 10px;
		text-align: center;
		font-color: grey;
	}
		
#tussenruimte {
		height: 150px;
	}
    
#container {
	  margin: 0 auto;
	  max-width: 1400px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      grid-gap: 0px;
      justify-content: center;
      padding: 0;
      align-self: start;
    }
    
.image {
	  font-family: 'Roboto', Helvetica, Arial, sans-serif;
	  font-size: 18px;
	  font-weight: bold;
      position: relative; 
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 1px;
      text-align: center;
      cursor: pointer;
      width: 85%;
      margin: 0 auto;
    }
	
.image span {
		height: 20px;
		line-height: 20px;
		display: inline-block;  
		padding: 5px 10px;  
		border: 1px solid white;  
		border-radius: 20px 20px 20px 20px;
		background-color: red; 
		color: white; 
		margin-top: 10px;
		font-weight: bold; 
}
    
.image img {
	  border: 1px solid grey;
      max-width: 85%;
      max-height: 85%;
      transition: transform 0.3s ease;
   }

.image:hover img {
      transform: scale(1.3);
     
    }
    
.banner {
	  font-size: 20px;
	  font-family: 'Roboto', Helvetica, Arial, sans-serif;
	  color: white;
      height: 100px;
      background-color: #000000;
	  border-bottom: 1px solid #c0c0c0;
      overflow: hidden;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
	  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      z-index: 1; 
	}
	
.banner-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

.banner h2 {
      margin: 0;
      padding: 10px;
	  
    }
	
.banner-img {
	  max-height: 100px;
	  margin-right: 10px;
	  cursor: hand; 
	  visibility: hidden;
	}
.banner-img:hover img {
	  max-height: 100px;
	  margin-right: 10px;
	  cursor: hand; 
	  
	}
	
.banner-img2 {
	  max-height: 80px;
	  margin-left: 10px;
	  visibility: hidden;
	}
		
.dropdown {
	  font-family: 'Roboto', Helvetica, Arial, sans-serif;
      position: absolute;
      top: 25px;
      left: 50px;
    }

.dropdown select {
	  
      font-family: 'Roboto', Helvetica, Arial, sans-serif;
	  padding: 5px;
      font-size: 20px;
	  width: 250px;
	  background-color: white;
	  color: black;
	  height: 40px;
    }	
	
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.pagination button {
    padding: 10px 20px; 
    font-size: 1.2em;  
    margin: 0 10px;    
    cursor: pointer;   
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    transition: background-color 0.3s;  
}

.pagination button:hover {
    background-color: #e0e0e0; 
}

.button {
    display: inline-block;
    padding: 8px 20px;  
    position: relative;
    border: none;
    background-color: #f4f4f4; 
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #e0e0e0; 
}


.button.vorige::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    border: solid;
    border-width: 2px 2px 0 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
	margin-top: -7px; 
}

.button.volgende::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px; 
    border: solid;
    border-width: 2px 2px 0 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top: -7px; 
}


