#container {
margin-top: 200px;
margin-left: 10%;
width: 80%;
float: left;
/* converted container to float and have a margin of 10 percent*/

height: auto;
border: solid;
border-radius: 15px;
background-color: gray;
color: black;
padding: 30px;
}

body {
background-color: #002F6C   ;
color: white;
} 


#header {
 	width: 80%;
 	margin-left: 10%;
 	height: 50px;
 	border: solid white 3px;
 	border-radius: 5px;
 	background-color:  #C8102E;
 	/* stolen colors from... https://teamcolorcodes.com/chicago-cubs-color-codes/ */
 	color: white;
 	text-align: center;
 	float: left;
 }

 .headersubmenu {
 width: 80px;
 height: 40px;
 background-color: silver;
 float: left;
 margin-left: 9px;
 }

#textarea {
	width: 80%;
	margin-left: 10%;
	height: 800px;
	float: left;
	border: solid white 3px;
 	border-radius: 5px;
 	background-color:  #C8102E;
 	color: white;
 	text-align: center;
}