/* CSS Document: basic style sheet for web project 2*/
#wrapper{
margin:20px auto;
width:100%;
}
/*a class that makes large images responsive*/
img.responsive{
	max-width:350px;/*sets the max image width to 350pixels*/
	height:auto;
	width:100%;
}
/* adds 10 pixels of padding around the header element*/
header{padding:10px;
}
/*adds 10 pixels of padding around the nav element and display a 1 pixel solid black border around the nav element*/
nav{
	padding:10px;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
}
/* adds 10 pixels of padding around the footer element and creates a 1 pixel solid black border above the footer, aligns the footer text to the center*/
footer{
	padding:10px;
	border-top:1px solid #000;
	text-align:center;
}
body{background-color:#ffccff;/*light pink*/}
h1{color:#9191ff;/*light purple*/}
h2{color:#9963ff;/*purple*/}
body{font-family:Arial, Helvetica, sans-serif;}
	p{color: #bf00ff;/*darker purple*/}