/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/

html, body {

		font-family: "Lato", sans-serif;
		font-size: 15pt;
		font-weight: 300;
		line-height: 2;

   -moz-text-size-adjust: none;
   -webkit-text-size-adjust: none;
   text-size-adjust: none;

  /* Location of the image */
  background-image: url(images/bg4.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* 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:#000000;
  
  /* SHORTHAND CSS NOTATION
   * background: url(bg4.jpg) center center cover no-repeat fixed;
   */
}

	h2 {
		font-size: 1em;
		color: #333333;
	}

	p {
		font-size: 0.8em;
		color: #333333;
	}

/* For mobile devices */
@media only screen and (max-width: 77px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(images/bg3.jpg);
  }
	}
Footer
