@import url("http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700");
html,
body {
  margin: 0;
  font-family: "Open sans";
}

#shots {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: auto;
}
#shots .shot {
  position: relative;
  display: block;
  width: 25%;
  background: #000000;
  color: white;
  text-decoration: none;
}
@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: 100%;
  padding: 30% 20% 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase!important;
  letter-spacing: 1px;
  overflow: hidden;
}
#shots .shot img {
  display: block;
  max-width: 100%;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}