#container {
	background-color: lightseagreen;
	height: 1800px;
	margin-bottom: 40px;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	float: left;
	clear: both;
	/*float is used to make website more mobile friendly*/
}

.header {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	background-color: pink;
	height: 150px;
	clear: none;
}

.contentholder {
	background-color: ghostwhite;
	clear: none;
	width: 85%;
	margin-left: 7.5%;
	margin-right: 7.5%;
	height: 700px;
	margin-top: 10px;
}

.menuoptions {
	background-color: yellow;
	height: 50px;
	width: 120px;
	margin-left: 25px;
	margin-top: 40px;
	padding: 10px;
	float: left;
	/*float so it goes left to right instead of top to bottom*/
}
p {
	font-size: 25;
}