
 
	body {
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color:#B9F4A4;
}
 

h1{
	color:darkcyan;
}
 
.gallery {
	display:grid; 
	gap:15px;
	padding:10px;
}
.gallery img {  
width:90%;
	height: auto;
	 border-radius: 5px;
}
 

 
.gallery img {
  transition: transform 0.2s ease; 
border: 5px dashed #FFFFFF;
	border-radius:26px;
	/* Zachte overgang */
	
}
.gallery img:hover {
	background-color:darkcyan;
  transform: scale(1.1); /* Zoom in (10% groter) */
}
