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

.centered { 
    margin: 50px auto; 
  max-width: 370px;
  
}

.img {
    margin: 5px;
    padding: 5px;
    float: left;
    height: auto;
  
}
.centered img{
  width: 150px;
  height: auto;
   border-radius: 20px;
}

@media screen and (min-width:750px){
  .centered { 
    margin: 70px auto; 
  max-width: 900px;
}
  .centered img{
  width: 200px;
  height: auto;
}
}

@media screen and (min-width:960px){
  
  .centered { 
    margin: 80px auto; 
  max-width: 1440px;
}
  .centered img{
  width: 250px;
  height: auto;
}
}

