 @import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700&display=swap');
html,
body {
  padding:0;
  margin: 0;
  background: whitesmoke;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
}
h1, h2{ font-weight: 100 }
h3{ font-weight: 300 }
#shots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
}
#shots .shot {
  position: relative;
  display: block;
  width: 370px;
  margin:0;
  color: black;
  text-decoration: none;
  box-shadow: 0 0 33px rgba(0,0,0,.05)
}
/*@media only screen and (max-width: 779px) {
  #shots .shot {
    width: 50%;
  }
}*/
#shots .shot:hover img {
  opacity: .1;
}
#shots .shot:hover .title {
  opacity: 1;
}
#shots .shot .title {
  position: absolute;
  width: calc(100% - 2rem);
  padding: 1rem;
  opacity: 0;
  transition: opacity .2s ease-in-out;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}
#shots .shot img {
  display: block;
  max-width: 100%;
  transition: opacity .2s ease-in-out;
}