#content>div>div{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}
/**/
#content a{
	display:block;
	flex:1;
	min-width:200px;
	max-width:300px;
	margin:5px;
	background:#fff;
	box-shadow:0px 1px 7px rgba(0,0,0,0.3);
	transition:0.3s;
	z-index:1;
	text-decoration:none;
	color:#3c3c3c;
}
#content a:hover{
	transform:scale(1.1);
	z-index:2;
}
#content a img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
/*#content a span.image{
	display:block;
	width:100%;
	height:200px;
	background-size:auto 150px;
	background-position:center;
	background-repeat:no-repeat;
	transition:0.5s;
	background-color:#fff;
	box-shadow:0px 0px 50px rgba(0,0,0,0.1) inset;
}
#content a:hover span.image{
	background-size:auto 180px;
}*/

#content h2{
	text-align: center;
    margin: 10px;
}
#content p{
	margin:10px;
}