﻿*{
	margin: 0;
	padding: 0;
}
.gallery{
	display:flex;
	flex-wrap: wrap;
	width: 90%;
	max-width: 402px;
	margin:auto;
	justify-content: space-between;
	list-style-type: none;
}

.gallery li{
	width: 130px;
	height: 130px;
	overflow: hidden;
	margin-bottom: 6px;
}

img{
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: center center;
	height: 130px;
}

@media screen and (max-width:767px) {
	.gallery{
		width: 100%;
		max-width: 282px;
	}
	
	.gallery li{
	width: 90px;
	height: 90px;
	margin-bottom: 6px;
	}
}
