div {
float: left;
clear: none;
}


#container{
margin-top: 40px;
margin-bottom: 40px;
background-color: hotpink;
height: 1100px;
width: 90% ;
margin-left: 5%;
}


.sidebar{
background-color: orange;
height: 950px;
margin-left: 2%;
margin-top: 50px;
clear: none;
width: 12vw;
}


.menubox{
background-color: purple;
font-size: 16pt;
font-weight: 250;
/* vw used for units, not px, no percent */
height:9vw;
width: 9vw;
margin-left: 1vw;
margin-top: 15px;
border-radius:10px;
clear: both;
}


.titlebox{
/* this is 65 and leaves about 35% for the sidebar */
width: 65%;
margin-right: 5%;
margin left: 20px;

height: 350px;
margin-top: 50px;
margin-left: 20px;
background-color:turquoise;

font-size: 250px;
font-family: fantasy;
font-style: block;
text-indent: 50px;
font-weight: 400;
}


.contentholder{
clear: none;
background-color:yellow;
margin-top: 50px;

width: 38%;
margin-left: 4%;
margin-right: 5%;
padding-left: 1.5%;

font-size: 17px;
font-family: fantasy;
font-style: block;
text-indent: 50px;
font-weight: 100;
/* this content holder will grow to fit all child objects  */
min-height: 200px;
padding-bottom: 30px;
padding-top: 30px;
}

img{
margin-top: 50px;
width: 31%;
margin-right: 1%;
margin-bottom: 30px;
border-radius: 10px;
float: right;
clear: none;
}


/* Link that has never been clicked, un-visited link */
a:link {
color: yellow;
text-decoration: none;
}

/* visited link */
a:visited {
color: yellow;
text-decoration: none;
}

/* mouse over link */
a:hover {
text-decoration: none;
color: pink;
}

/* selected link */
a:active {
color: yellow;
text-decoration: none;
}