div {
	 border: 2px solid black;
	border-radius: 80px;
	color: black;
	float: left;
	clear: both;
}

body {
background-color: black;
}

#container {
	width: 90%;
	height: 85vh;
	margin: 5%;
	background-color: red;
}


.smallbox {
height : 90px;
width : 90px;
background-color: red;
padding: 30px;
}

.mediumbox {
height : 90px;
width : 90px;
background-color: yellow;
padding:  30px;
}

.largebox {
height : 90px;
width : 90px;
background-color: green;
padding:  30px;
}

.purplebox {
height : 10px;
width : 10px;
background-color: purple;
padding: 15px;
}


img {
	width : 70%;
}

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

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

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

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