p{
	margin-top: 0%;
}

/*makes all the links in the navbar white*/
a{
    color: white;
}

/*makes the links in the navbar turn lightblue when you hover your mouse over them*/
a:hover {
	background-color: lightblue;
}


body{
	background-color: lightblue;
}

/*positions the blackbird coded game in the middle of the content div horizontally and vertically*/
iframe{
	margin-top: 0.20%;
	margin-left: 0.5%;
}

/*a height and background color for the container*/
#container{
	height: 98vh;
	background-color: lightblue;
}


/*a height, background color, and border for the title box div*/
.titlebox{
	height: 9vh;
	background-color: #0d7887;
	border-style: solid;
	border-color: goldenrod;
}

/*specific font-size and font-color for the title*/
.titletext{
	font-size: 5vw ;
	font-size: 5vh;
	color: white;
	text-align: center;
	padding-top: 0.8%;
}

/*the height and borders for the nav bar div*/
.navbar{
	height: 4vh;
	background-color: #0e255d;
	margin-bottom: 1%;
	
	border-right-style: solid;
	border-right-width: 0.25em;
	border-right-color: goldenrod;

	border-left-style: solid;'
	border-left-width: 0.25em;
	border-left-color: goldenrod;

	border-bottom-style: solid;
	border-bottom-width: 0.25em;
	border-bottom-color: goldenrod;
}

/*the color and position of the navbar text links*/
.navbox{
	color: white;
	float: left;
	margin-top: .5%;
	margin-left: 12.5%;
	font-size: 2vw ;
	font-size: 2vh;
}


/*the size, background-color, and border for the content div*/
.contentbox{
	width: 99%;
	height: 100vh;
	background-color: #0d7887;
	margin-bottom: 1%;
	margin-left: .25%;
	border-style: solid;
	border-width: 0.25em;
	border-color: goldenrod;
}

/*the height, background-color, and border for the footerbox div*/
.footerbox{
	height: 19vh;
	background-color: #0e255d;
	border-style: solid;
	border-width: 0.25em;
	border-color: goldenrod;
}