div.gallery {
  border: 9px solid #ffffff;
  
 
 
}
/*
div.gallery:hover {
  border: 1px solid #e70000;
}*/

div.gallery img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  
}

* {
  box-sizing: border-box;
  box-shadow: #777;
}

.responsive {
  padding: 3px 5px;
  float: left;
  width: 33%;
  
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 3px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

