div{
	border:2px solid black;
	border-radius:20px;
	color:black;
}
/*makes a border around every div and rounds said border*/

img{
	width:40%;
	float:left;
	clear:left;
	clear:right;
	margin:5%;
}
/*size of all images is the same and they are on their own lines*/

.paragraph{
	border:0px;
	clear:left;
}
/*places text on its own line*/

#container{
	border-radius:0px;
	width:100%;
	background-color:purple;
	height:2000px;
	border-width:5px;
}
/*largest container, contains everything*/

#textarea{
	width:90%;
	height:1200px;
	margin:5% 5% 5% 5%;
	background-color:white;
	padding: 10px;
}
/*medium container, contains images and words*/

#header.img{
	border-radius:20px;
	width:90%;
	height:100px;
}
/*background image for header*/

#header{
	border-radius:0px;
	width:90%;
	height:100px;
	margin:5%5%5%5%;
	font-size:55px;
	text-align:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-color: maroon;
	color:white;
}
/*contains the title of the page*/

#adbar{
	border-radius:0px;
	width:96%;
	height:100px;
	position:fixed;
	bottom:10px;
	background-image: url("wiki.jpg");
	margin-left: 1%
}
/*makes the wiki picture the background image of the 'ad bar' div*/

#falseX{
	border-radius:0px;
	margin-left: 1%;
	width:20px;
	height:20px;
	position:fixed;
	bottom:110px;
	background-color:grey;
	text-align:center;
}
/*makes the 'X' a link to wikipedia*/

.menu{
	border-radius:0px;
	width:99.7%;
	height:100px;
	background-repeat:no-repeat;
	background-size:cover;
	background-image: url("coolimage.jpg");
}
/*holds all the links to other pages and the containers of said links, background image is cool*/

.menubox{
	border-radius: 0px;
	width:17%;
	height:90px;
	margin:3px 1% 3px 1%;
	clear:right,left;
	text-align: center;
	float:left;
	font-size:30px;
	background-color:maroon;
	color: white;
	font-weight: 555;	
}
/*container for all the links in the menu*/






