.gallery {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	
}

.gallery img {
	width:250px;
	height:250px;
	object-fit:cover;
	margin:20px;
	
	-webkit-box-shadow: 0px 0px 40px 0px rgb(200 200 200 / 75%);
    -moz-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    box-shadow: 0px 0px 40px 0px rgb(200 200 200 / 75%);
}

.gallery a {
	border-bottom: unset;
}