#container {
	height: 800px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	/* using auto margin means you must use both left & right */
	border-radius: 100px;
	background-color: red;
	/* this is more specific by id */
}

div {
	border-radius: 10px;
}

#menuheader {
	height: 100px;
	float: left;
	clear: both;
	margin-left: 15%;
	width: 70%;
	background-color: blue;
	font-size: 30px;
}
/*menuheader styles to make it look nice*/

.textarea {
	height: 550px;
	float: left;
	clear: both;
	margin-left: 15%;
	width: 80%;
	background-color: white;
	color: black;
	margin: 100px;
	font-size: 30px;
	text-align: center;
}
/*textarea styles*/

.menubox {
	height: 40px;
	width: 100px;
	background-color: white;
	border-radius: 100px;
	margin: 20px;
	text-align: center;
	float: left;
}
/*menu styles*/