/*Main box = box that hold most of the pages text*/
#Mainbx {
	background-color: forestgreen;
	width: 90vw;
	/*height: 97vh;*/
	float: left;
	clear: right;
	margin: 10px;
	padding: 10px;
	border-radius: 10px;
}
/*Menu box holds links to other pages*/
#Menubx {
	background-color: forestgreen;
	color: white;
	float: left;
	clear: left;
	border-radius: 10px;
	margin: 10px;
}	
/*currernt button just makes the button white to show what page you are on*/
#crnbttn {
	text-align: center;
	background-color: white;
	color: black;
	height: 20px;
	width: 120px;
	border-radius: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
	margin-right: 10px;
}
/*these buttons have links to other pages*/
.bttns {
	text-align: center;
	background-color: darkgreen;
	color: white;
	height: 20px;
	width: 120px;
	border-radius: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
	margin-right: 10px;
}
/*Header box hold header text*/
#hdrbx {
	background-color: white;
	color: black;
	font-family: "Copperplate", fantasy;
	font-weight: 900;
	font-size: 8vw;
	border-radius: 10px;
	margin: 5px;
}
/*box that holds the text*/
.txtbxs {
	background-color: darkgreen;
	color: white;
	/*font-family: "Copperplate", fantasy;*/
	/*height: 10px;*/
	font-size: 3vh;
	margin: 5px;
	padding: 10px;
	border-radius: 10px;

p { 
	/*clear:right;*/
	float: left;
 }
}

img {
	width: 20%;
	float: left;
	clear: left;
	padding: 50px;
	border-radius: 10px;
}