div {
	float: left;
	clear: none;
/* British guy explains this in a video  */
}


#container {
	width: 80%;
	height: 1000px;
	margin: 5%;
	padding: 5%;
	background-color: cornflowerblue;
}




/* selector for light pink menu bar */
.menubar {
	width: 900px;
	height: 130px;
	background-color: lightpink;
	margin: 5px;
}


/* selector for menu box */
 .menubox {
 	width: 150px;
 	height: 100px;
 	clear: none;
 	background-color: ghostwhite;
 	margin: 6px;
 }

 /* selector words box below the menu bar */
 .content {
 	width: 900px;
 	padding: 50px;
 	height: 500;
 	clear: none;
 	background-color: lemonchiffon;
 	margin: 6px;
 	margin-top: 30px;
 	font-family: comics sans ms;
 	font-size: 33pt;
 }




