.navbar{
	font-size: 1.6em;
	position: fixed;
	width: 100%;
	height: 30px;
	top: 0;
	margin: 0 auto;
	padding: 50px;
	background-image: url(banner.jpg);
	background-size: 100vw 130px;
}
ul{
	list-style-type: none;
	margin: 0 auto;
}
li{
	margin-left: 5px;
	float: left;
}
.navbar a{ /*Nav Buttons*/
	border-style: ridge;
	border-color: white;
	border-width: 2px;
	border-radius: 10px;
	padding: 5px;
	color: #ffffff;
	text-decoration: none;
}
.navbar a:visited{ /*remove standard link highlight*/
	color: #ffffff;
}
#mainbox{
	text-align: center;
	margin-left: 100px;
	margin-right: 100px;
	margin-top: 130px;
	padding: 20px;
	background-color: rgba(255,255,255,0.9);
}
.footerbox{
	float: left;
	width: 50%;
	background-color: rgba(255,255,255,0.5);
}
body{
	background-image: url(background.jpg);
	background-size: 100vw 100vh;
	background-attachment: fixed;
	margin: 0 auto;
}
footer{
	margin-left: 100px;
	margin-right: 100px;
	font-size: 1em;
}
.img1{
	height: 35%;
	width: 35%;
	position: static;
	transition: width 0.1s, height 0.1s;
	margin: auto;
	padding: 0px;
	border: 1px solid #000044;
	border-radius: 10px;
}
.img1:hover { /*expand hovered image*/
	width: 40%;
	height: 40%;
	border-width: 1.5px;
}
button{
	width: 75px;
	height: 50px;
}