@import url('https://fonts.googleapis.com/css2?family=Rajdhani&display=swap');
*{
	padding: 0px;
	margin: 0px;
	font-family: 'Rajdhani', sans-serif;
}
body{
	background-color: #e6e6e6;
}
.gallery{
	padding: 80px 0px;
}
img{
	max-width: 100%;
}
.gallery img{
	padding: 15px;
	width: 145px;
	height: 145px;
	cursor: pointer;
	align-items: center;
}
#gallery-popup .modal-img{
	width: 100%;
}
.close {
    position: absolute;
    right: 32px;
    top: 15px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
  }
  .close:hover {
    opacity: 1;
  }
  .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: black;
  }
  .close:before {
    transform: rotate(45deg);
  }
  .close:after {
    transform: rotate(-45deg);
  }
  