/* 

Project Name: Cookie Monster 
Client: Cookie Monster
Author: Chris Castiglione | www.twitter.com/castig | www.castig.org 
Developed @ One Month in NYC 

*/

body {
	/*background: url('../images/cookie-monster.jpg');*/
	/* 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;
	background: url('../images/background.png');
}

#container{
	margin: 0 auto;
	background:  white ;
	border: 12px solid #edad1e;
	width: 800px;
	color: black;
	font-family: 'Oswald', sans-serif;
	font-size: 25px;
    padding: 25px;
}

#Video{
width: 186.5px; height: 105px;
background:  white ;
border: 12px solid #bb5577;
position: absolute;
   top:25%;
   left: 3%;

}

h1{
	font-size: 80px;
	color: black;
}

h2{
	background:  #bb5577 ;
	color: white;
	padding: 10px;
	border-radius: 5px;
}

a{
	color: #75c1f6;
	text-decoration: none;
}
