*{margin: 0 auto;}
.header {
	position: absolute;
    position: fixed;
	width: 100%;
	background-color: #65acd9;
	text-align: center;
	height: 130px;
	padding-top: 2%;  
}
.header h1{
	color: black;
	font-size: 50px;
	padding-bottom: 10px;
}
body{
	background-color: #a8d2ec;
}

/*NAV-bar*/
ul {
    list-style-type: none;
    margin: 0;
    margin-top: 30px;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 100px;
    width: 100%;
}
li {
	display: inline-block;
   text-align: center;
}
li a {
    display: block;
    color: white;
    text-align: center;
    font-size: 30px;
    padding: 14px 18px;
    text-decoration: none;
}
li a:hover {
    background-color: #111;
}
.active{
	background-color: #254D9A;
    color: white;
}
#right{
	float: right;
}

/*Info under nav bar*/
.content{
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 80%;
	height: 100%;
	z-index: -1;
	text-align: center;
	background-color: #d1d1d3;
	border-left: 3px solid black;
	border-right: 3px solid black;

}

iframe{ 
	position: center;
	margin-top: 225px;
	width: 95%;
	height: 70%;
	border: 0;
}

