
.bgImgProps {
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

/* RESPONSIVE */

/* Other devices in portrait mode */
@media only screen and (orientation : portrait) {
  body, .bgImgProps {
    background-image: url('/img/bg-db-750px-portrait.jpg');
  }
}

@media only screen and (orientation : landscape) and (max-height: 1000px) {
  body, .bgImgProps {
    background-image: url('/img/bg-db-750px-landscape.jpg');
  }
}

/* Desktop */
@media only screen and (orientation : landscape) and (min-width: 1080px){
  body, .bgImgProps {
    background-image: url('/img/bg-db.jpg');
  }
}