body{
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://th.bing.com/th/id/OIP.0sD7AqO5A0BiyAceuvKmGAHaDI?pid=ImgDet&rs=1');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat repeat;
	height: 100vh;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
h1{
	text-align: center;
	color: white;
}

.image-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
  }
  
  .image-wrapper {
	position: relative;
	margin: 15px;
	overflow: hidden;
	height: 380px;
	width: 300px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
  }

  .image-wrapper:hover {
	box-shadow: 0 0 20px rgba(240, 237, 237, 0.4);
	transform: scale(1.02);
  }
  
  .image-caption {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 5px;
	/* font-weight: 550; */
	font-size: 16px;
	line-height: 1.5;
	opacity: 0;
	text-align: center;
	transition: all 0.3s ease-in-out;
	transform: translateY(100%);
  }
  
  .image-wrapper:hover .image-caption {
	transform: translateY(0%);
	opacity: 1;
  }
  
  .image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	transition: all 0.3s ease-in-out;
  }
  
  .image-wrapper:hover img {
	transform: scale(1.1);
  }

  .filter-menu {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
  }
  
  .filter-button {
	margin: 0 10px;
	padding: 8px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	background-color: rgb(202, 200, 200);
  }
  
  .filter-button.active {
	background-color: #007bff;
	color: white;
  }

  .pop-up-container {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
  }
  
  .pop-up-image {
	display: block;
	max-width: 90%;
	max-height: 80%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
  }
  
  .close {
	color: white;
	font-size: 50px;
	font-weight: bold;
	position: absolute;
	top: 20px;
	right: 30px;
	cursor: pointer;
  }
  
  .pop-up-caption {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	color: white;
	font-size: 20px;
  }
