div.img {
	height: 35rem;
	border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
	border: 0.1rem solid grey;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,1);
}
div.img img {
	width: 100%;
	height: 30rem;
	cursor: pointer;
}
div.desc {
	font-size: 1.7rem;
	color: white;
	height: 1rem;
	padding: 0.5rem;
	text-align: center;
}
.responsive {
	float: left;
	width: 28%;
	min-width: 30rem;
	margin-left: 4%;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 10px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	height: 80%;
	max-width: 900px;
}
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	font-size: 2rem;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}
.modal-content, #caption {
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
	from {
		transform: scale(0)
	}
	to {
		transform: scale(1)
	}
}
@keyframes zoom {
	from {
		transform: scale(0.1)
	}
	to {
		transform: scale(1)
	}
}
.close {
	position: absolute;
	top: 25px;
	right: 55px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.close:hover, .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
@media screen and (max-width: 1080px){
	.responsive {
		width: 44%;
	}
}
@media only screen and (max-width: 760px) {
	.responsive {
		width: 92%;
	}
	.modal-content {
		width: 100%;
		height: auto;
	}
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}