img.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}
body {
  /* Location of the image */
  background-image: url(underconstruction.png);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: top right;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#e3e3e3;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
   margin: 0;
   padding: 0;
}
a{
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
}

#mobile-content{display: none}


@media only screen and (min-width: 961px) and (max-width: 1440px) {
	body {
		background-size: contain;
		background-image: url(underconstruction-middle.png);
		background-color:#FFFFFF;
	}

}


@media only screen and (max-width: 960px) {
  body {

    background-image: none;
    background-color:#FFFFFF;
  }
  #mobile-content{display: block}
}