@charset "utf-8";
/* CSS Document */

.gallery{
  columns:3;
  margin: auto;
  max-width:1200px;
   column-gap:15px
}
img{
  width: 100%;
  /*max-width: 300px;*/
  margin-top: 15px;
  border-radius: .4em

}


@media screen and (max-width:767px){
  .gallery{
    columns:1;
    max-width:100%;
  }
  
}
@media screen and (min-width:768px) and (max-width:1024px){
  .gallery{
    columns:2;
    max-width:100%;
  }
  
}