/* 

Project Name: Cookie Monster 
Client: Cookie Monster
Author: Chris Castiglione  

*/

html {
	/* set up a background image */
	
/*	background: url('../images/cookie-monster.jpg') no-repeat;
*/
	
	/* the follow is the code to have the image display as a full page */
	background-position: center;
	background-attachment: fixed;
	-webkit-background-size: cover; /* the next 3 lines are "browser prefixes", they are necessary to include for CSS3 techniques */
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
