/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {/* SHORTHAND CSS NOTATION */
   background-image: url(images/chigde3.jpg); 
   background-position: center center;
   background-repeat: no-repeat;
   background-attachment: fixed;
   background-size: cover;
   background-color:#ff00ff;
      }

  /* For mobile devices */
    @media only screen and (max-width: 240px)
    @media only screen and (max-height: 240px) 

  { body 
    {/* The file size of this background image is 93% smaller * to improve page load speed on mobile internet connections */
    background-image: url(images/chich3.jpg);
    }
	}