@charset "utf-8";
/* CSS Document */
/*#4dd0e1
#00ACC1
#006064*/
body{
	background-color: #4dd0e1;
	margin: 0px;
 	font-family: 'Source Code Pro';
}
header{
	margin: 0px;
}
.container{
	margin-top:200px;
	width: 98%;
	margin-left: 1%;
	background: #4dd0e1;
}
nav{
	width: 100%;
	height: 100px;
    background-color: #00ACC1;
	position: fixed;
	margin-top: -200px;
}
ul {
	width: 100%;
    list-style-type: none;
	margin-top: 12px;
	padding: 0;
    overflow: hidden;
    position: fixed;
	margin-left: calc((100% - 800px)/2);
}

li {
	display: inline-block;
	width: 200px;
}

li a {
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
	padding: 20px 0px;
	font-weight: 600;
	font-size: 25px;
}

li a:hover:not(.active) {
    background-color: #006064;
    color: white;
}
/*Small Desktops*/
@media (min-width: 768px)and (max-width: 1096px) {}
/*Big Desktops*/
@media (min-width: 1096px){
}