.container {
	/*height: 2000px;*/
	width: 70%;
	/*to set width and height*/
	margin-left: 15%;
	/* has to be symetrical with left and right */
	float: left;
		/*when using auto margins have to do left and right*/
	background-color:DarkViolet;
	background-color: #692a7d;
	/*to set color*/
}

.header {
	/*height: 100px;*/
	/*no height means it will expand to the child height */
	clear: both;
	width:90%;
	background-color: LightSteelBlue;
	margin-left: 5%;
	float: left;
	/*to set certain attributyes for header*/
}

.textarea {
	height: 1600px;
	float: left;
	clear: both;
	margin-left: 5%;
	width:80%;
	background-color: navy;
	color: white;
	padding: 5%;
	margin-bottom: 30px;
	/* padding consumes both left and right */
	/*to set certain attributes for textarea*/
}

.headermenu {
	border-radius: 0px;
	float: left;
	color: white;
	background-color: blue;
	margin-left: 5.5%;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 80px;
	
	text-align: center;
	/*to set certain attributes for .headermenu*/
}

 


/* unvisited link */
a:link {
    color: red;
}

/* visited link */
a:visited {
    color: red;
}

/* mouse over link */
a:hover {
    color: crimson;
}	

/* selected link */
a:active {
    color: red;
}
/* link styling from www.w3cschools */




