/* this sizes 30% of the container not the original image size */
.imagesizing {
	width: 30%;
	margin-left: 2%;
	float: left;
}

/* I want all my divs to float left */
	div {
	float: left;
}


#container {
	background-color: lightblue;
	margin-bottom: 40px;
	margin-left: 10% ;
	
	width: 80%;
	padding-bottom: 20px;

}

.header {
	width: 100%;
	background-color: darkblue;
/*	height: 150px;*/
	padding-bottom: 40px;
}

/* if there is padding or margin there is a limit of 100% for sizes */
.contentholder {
	background-color: blue;	
	width: 80%;
	margin-left: 10%;
/*	height: 700px;*/
	margin-top: 10px;
	padding-bottom: 50px;
}
/* I use the same CSS code for most things because I want the sizes to be consistant on my site */

.menubuttons {
	background-color: lightblue;
	height: 60%;
	width: 10%;
	min-width: 99px;
	margin-left: 2%;
	margin-top: 1%;
	padding-bottom: 12px;
	float: left;
}

.menubuttons a{
	margin-top: 10px;
	float: left;
	text-align:center;
	display: block;
	font-size: 30px;
	font-family: arial;
	color: black;
	text-decoration: none;
}
.menubuttons a:hover {
	color: purple;
}

#headerparagraph {
	font-size:50px;
	font-family: arial: ;
	text-align: center;
}

#mainparagraph {
	font-size: 25px;
	font-family: arial;
}

#contentparagraph {
	font-size: 20px;
	font-family: arial;
	margin-left: 2%;
	float: left;
	text-align: center;
	

}

