
/* main container id, holds content divs and images */
#container{
	background-color: lightskyblue;
	/*height: 1800px;*/
	margin-bottom: 40px;
	/* keep code mobile friendly by using percentages instead of auto */
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	padding-top: 5%;
	padding-bottom:5%;
}

/* menuholder class, holds submenus */
.menusheader {
	float: left;
	position: sticky;
	top: 0;
	width: 90%;
	margin-left: 4%;
	margin-right: 4%;
	background-color: lightgreen;
	padding-left: 10px;
	padding-right: 10px;
}

/* submenu class, buttons to click that take you to submenus */
.submenu {
	background-color: seagreen;
	min-width: 240px;
	width: 14.44%;
	height: 50px;
	float: left;
	margin: 0.6%;
	padding-left: 1%;
	font-size: 24pt;
	color: lightcyan;
	font-family: cursive;
}

/* submenu class when hovered over*/
.submenu:hover {
	background-color: lightgreen;
	min-width: 240px;
	width: 14.44%;
	height: 50px;
	float: left;
	margin: 0.6%;
	padding-left: 1%;
	font-size: 24pt;
	color: lightcyan;
	font-family: cursive;
}

/* box to hold content */
.contentholder {
	background-color: royalblue;
	width: 80%;
	margin-left: 8%;
	margin-right: 8%;
	font-family: cursive;
	color: white;
	font-size: 15pt;
	padding: 2%;
}

/* stiff box to hold content, doen't have auto height */
.stiffcontentholder {
	background-color: royalblue;
	width: 80%;
	height: 400px;
	margin-left: 8%;
	margin-right: 8%;
	font-family: cursive;
	color: white;
	font-size: 15pt;
	padding: 2%;
}

/* class for ingredient p tags */
.ingredient {
	font-family: sans-serif;
	color: white;
	font-size: 15pt;
}

/* class for ingredient p tags being hovered over by cursor */
.ingredient:hover {
	font-family: sans-serif;
	color: white;
	font-size: 15pt;
}

/* class for subtitle p tags */
.subtitle {
	font-family: sans-serif;
	color: white;
	font-size: 20pt;
}

/* class for preparationstep p tags */
.preparationstep {
	font-family: sans-serif;
	color: white;
	font-size: 15pt;
}

/* class for tip p tags */
.tip {
	font-family: sans-serif;
	color: white;
	font-size: 15pt;
}

/* element selector for all images */
img{
	width:50%;
	margin-left: 24%;
	margin-right: 24%;
	margin-top: 10px;
	margin-bottom: 10px;
}