#container {
	height: 900px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	/* margin-left must be accompanied by margin-right if both are auto */
	background-color: #212121;
	border-radius: 10px;
	/* id is more specific than tag */
}
div {
	border-radius: 10px;
}
body {
	background-color: #212121;
}
a {
	color: black;
}
h1 {
	color: black;
}
p {
	color: black;
}
#sidebar {
	height: 755px;
	width: 96px;
	float: left;
	clear: left;
	background-color: #34AFB3;
	font-family: "Quicksand";

	position: fixed;
	/*position fixed floats the sidebar above everything else and anchor it in the same spot no matter where the user scrolls*/
}
.textarea-videos {
	height: 4740px;
	background-color: #e0e0e0;
	color: white;
	font-family: "Quicksand";

	/*declare spacing requirements*/
	margin-left: 96px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.textarea {
	height: 2000px;
	background-color: #e0e0e0;
	color: white;
	font-family: "Quicksand";

	/*declare spacing requirements*/
	margin-left: 96px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.menuitem {
	/*this class styles all menu buttons*/

	border-style: solid;
	border-radius: 10px;
	border-color: #212121;
	color: black;
	/*declares border and text styling*/

	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 25px;
	margin-bottom: 25px;
	margin-left: 5%;
	margin-right: 5%;
	/*declares spacing requirements*/

	background-color: #e0e0e0;
	width: 70px;
	height: 50px;
	float: left;
}
#menuitem-selected {
	/*using an id rather than a class because there can only be one selected menu item at a time*/ 
	
	color: black;

	/*declare spacing*/
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 25px;
	margin-bottom: 25px;
	/*end spacing declaration*/
	border-radius: 0px;
	/*declare color*/
	background-color: #e0e0e0;
	/*light color to match Oh Wonder color scheme*/

	width: 86px;
	height: 50px;
	float: left;

	/*start border*/
	border-top-style: solid;
	border-top-color: #212121;
	border-bottom-style: solid;
	border-bottom-color: #212121;
	/*adds a dark border on top and bottom to blend text area with background*/
}
img {
	clear: left;
}