/* 

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: url("../images/friends.jpeg");
	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;
}

#container{
	background-image: linear-gradient(to bottom right,#7890A8,#304878,#181848);;
	width: 550px;
	color:white;
	padding: 20px;
	font-size: larger;
	
	font-family: 'Roboto', sans-serif;
}

h1{
	font-size: 45px;
	
	
}
h2{
	background-color:rgba(255, 255, 255,.5);
	color:#181848;
	padding: 6px;
	text-align: end;
	
	
}


a{
	color:#D7DCFC ;
	font-style:oblique;
	text-decoration: none;
	padding: 5px;
}
p{
	padding: 6px;
}