/* selects all divs */

div {
float: left;
clear: both;
}

#container {
background-color: black;
width: 90%;
margin-left: 5%;
}

.header {
background-color: red;
height: 100px;
width: 80%;
margin-left: 10%;
}

.textcontent {
background-color: darkred;
width: 80%;
margin-left: 10%;
}

/*choose your background color*/
body {
background-color: pink;
}

/* these are your menu boxes */
.menubox {
background-color:  black;
height:  50px;
width:  120px;
color:  white;
margin:  5px;
padding:  10px;
border-radius: 5px;
/* side by side */
clear: none;
font-size: 15pt;
font-family: Georgia;
text-align: center;
}

/*customize images */
img {
margin-left:  25%;
margin-right: 25%;
width: 50%;
margin-top:  2%;
}

/*select and style paragraphs */
p {
color: white;
margin-left: 5%;
margin-right:  5%;
padding-right: 5%;
padding-left: 5%;
width: 80%;
font-family: Georgia;
/* web safe font */
font-size: 20pt;
/* fonts point size pt */
float: left;
clear: both;
}

