/* Gallery Stylesheet */

div.gallery {
  border: 3px solid #ffffff;
}

div.gallery:hover {
  border: 3px solid #75a743;
}

div.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

/* Responsive Styles for Gallery */
.responsive-gallery {
  padding: 6px 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive-gallery {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive-gallery {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
