.image-container {
  position: relative;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.dvd-cover {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.image-container:hover .dvd-cover {
  opacity: 0.3;
}

.image-container .middle {
  opacity: 1;
}

.text {
  color: white;
  text-align: center;
}

.text .btn {
  font-size: 32px;
  background-color: #413f54;
}

.text .btn:hover, .text .btn:active, .text .btn:focus {
  color: #FFF;
}

/* Modal */

.tile {
  cursor: all-scroll;
  overflow: hidden;
  position: relative;
  height: 500px;
}

.photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform .5s ease-out;
  width: 100%;
  margin-bottom: 20px;
}