

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background: #e9f3fc;
}

/*  For small screens change to column */

@media only screen and (max-width: 660px) {
  .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


.gallery img {
  width: 100%;
}

.gallery a {
  text-decoration: none;
}

.frame {
  box-shadow: 0px 0px 30px 0px #125087;
  background-color: white;
  margin: 20px 15px 20px 15px;
   transition: 150ms;
}

.frame:hover {
  transform: scale(1.025);
 	}

.portrait {
  max-width: 180px;
}

.landscape {
  max-width: 300px;
}

.caption, .credits {
  padding-left: 5px;
  font-weight: bold;
}

.caption {
  font-family: "helvitica, arial", sans-serif;
  font-size: 1.0em;
  line-height: 1.1em;
  font-style: italic;
  color: #4b9ee7;
}

.caption-right {
  display: inline-block;
  float: right;
  padding-right: 5px;
  padding-top: 5px;
}

.credits {
  font-family: helvitica, arial, sans-serif;
  font-size: 0.8em;
  color: #888888;
  line-height: 0.9em;
}


