div{
	float: left;
	clear: both;
	}



#container {
	background-color: lightsteelblue;
	height: 1800px;
	margin-bottom: 40px;
	width:80% ;
	margin-left: 10%;
	margin-top: 40px;
	border-radius: 10px;
	padding: 10px;
	float: left;
	clear: both;
	/*stop using margin auto, does not work with float*/
	/*float is needed to make the website mobile friendly with percentage*/
	}


.headerofmenus {
	width: 90%;
	margin-left: 5%;
	background-color: mediumpurple;
	height: 80px;
	padding: 5px;
	border-radius: 5px;
	}



img {
	float:left;
	width:50%;
	margin-right:25%;
	margin-left:25%;
	padding: 15px;
	}


.contentholder{
	background-color: deepskyblue;
	font-size: 20px;
	color: white;

	/*if i add padding i must reduce the width, can't exceed 100%*/
	width: 80%;
	margin-left: 10%;
	height: 1350px;
	margin-top: 10px;
	padding: 10px;
	border-radius: 5px
	}


.smallbox {
	background-color: rebeccapurple;
	height: 50px;
	width: 300px;
	font-size: 20px;
	color: white;
	margin: 5px;
	padding: 10px;
	border-radius: 5px;
	float: right;
	clear: none;
	}


body{
	margin: 0px;
	background-color: slategray;

	}


p{
	font-family: raleway;
	font-size: 48px;
	color: white;
	padding: 15px;

}


#anotherlargecontainer {
	background-color: lightsteelblue;
	font-size: 20px;
	height: 2500px;
	border-radius: 10px;
	margin-bottom: 40px;
	margin-top: 40px;
	width:80% ;
	margin-left: 10%;
	padding: 10px;
	float: left;
	clear: both;
}


.largecontentholder {
	background-color: deepskyblue;
	font-size: 25px;

	/*if i add padding i must reduce the width, can't exceed 100%*/
	width: 80%;
	margin-left: 10%;
	height: 7500px;
	margin-top: 10px;
	padding: 25px;
	border-radius: 5px
	}


#another2largecontainer {
	background-color: lightsteelblue;
	height: 7800px;
	border-radius: 10px;
	margin-bottom: 40px;
	margin-top: 40px;
	padding: 10px;
	width:80% ;
	margin-left: 10%;
	float: left;
	clear: both;
}

.anotherlargercholder{
	background-color: deepskyblue;
	font-size: 25px;

	/*if i add padding i must reduce the width, can't exceed 100%*/
	width: 80%;
	margin-left: 10%;
	height: 2200px;
	margin-top: 10px;
	padding: 25px;
	border-radius: 5px
	}
}

