/* 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;
}


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*/}
	

h3{color:#9963ff;/*purple*/}

/* form */
form {
   margin: 0 auto;
}

input {
   float: left;
   clear: left;
   margin: 10px;
}

label {
   float: left;
   font-size: 1.4em;
   font-family:Arial, Helvetica, sans-serif;
   font-size: 16px;
   
}
