/* CSS Document */



.gallery{
width: 990px;
margin: 40px auto 80px;
display: flex;
flex-wrap: wrap;
}
.gallery_item{
width: 320px;
height: auto;
padding: 10px;
margin:5px;
background: #fff;
border-radius:4px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.gallery_item img{
width: 300px;
height: 300px;
object-fit: cover;
}
.gallery_item p{
padding-top: 8px;
font-size: 14px;
}
.gallery_item p span{
font-size: 12px;
}



@media screen and (max-width: 768px){

.gallery{
width: 100%;
}
.gallery_item{
width: 100%;
margin:10px 0;
}
.gallery_item img{
width: 100%;
height: auto;
object-fit: cover;
}



}