@charset "utf-8";

* {
    box-sizing: border-box;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

body {
    margin: 0px;
	padding:0px;
	box-sizing:border-box;
	background-color:rgb(153,204,255);
}
h2{
	margin:0px;
	padding:0px;
}

header {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	background-color:transparent;
	width:100%;
	height:160px;
	
}

.banner {
	position:fixed;
	top:0px;
	width:100%;
	margin:0;
	padding:20px 10% 0px 10%;
	text-align:center;
	background-color:rgb(0,51,204);
	color:rgb(153,204,255);
	font-weight:bold;
	height:100px;
}

.fa-bars {
    font-size: 2em;
}

#hamburger-container {
    display: inline-block;
    width: 100%;
    padding: 10px 10%;
	margin:0px;
    text-align: center;
    background-color:rgb(0,220,250);
	color:rgb(0,102,255);
	border-bottom:5px solid rgb(0,51,204);
}
.main-menu{
	width:100%;
	position:fixed;
	top:100px;
}

.main-menu ul {
    background-color: rgb(0,51,204);
    margin: 0px;
	padding:0px;
    display: none;
	color:rgb(0,51,204);
	text-align:center;
	list-style-type: none;
	border-bottom:5px solid rgb(0,51,204);
}

.main-menu ul li a {
	display:inline-block;
	text-decoration:none;
	text-align: center;
	width:60%;
	height:50px;
	margin:0px;
	padding:5% 10% 10% 10%;
	/*color:rgb(0,51,204);*/
	background-color:rgb(204,230,255);
	font-size:17px;
	font-weight:bold;
}

.main-menu ul li a:hover {
	background-color:rgb(0,102,255);
	color:rgb(153,204,255);
}

.main-container {
	background-color:rgb(153,204,255);
	width:100%;
	min-height:800px;
	text-align:center;
	color: white;
	padding:25px 0 0 0;
	margin-bottom:70px;
}

#homepagina{
	background-image: url("../img/meadow1.jpg");
	background-size: cover;
	background-position: center;
	color:rgb(204,230,255);
	font-size:60px;
	text-align:center;
}


section{
	width:60%;
	margin: 0 20%;
	text-align:center;
}

section p{
	text-align:justify;
}
section p img{
	float:left;
	margin-right:10px;
}
section iframe{
	margin-bottom:100px;
}
section span{
	color:rgb(0,51,204);
}

footer {
	width:100%;
	height:60px;
	color:rgb(153,204,255);
	background-color:rgb(0,51,204);
	padding:20px 30px 0px 0px;
	margin:0px;
	position: fixed;
	bottom:0px;
	display:flex;
	justify-content:flex-end;
	text-align:center;
}

@media only screen and (min-width: 650px){



#hamburger-container{
	display:none;
}

.main-menu ul{
	display:flex;
	justify-content:center;
	align-items:center;
	
}

.main-menu ul li{
	width: 100%;
}

.main-menu ul li a {
	display:flex;
	justify-content: space-between;	
	text-align:center;
	width:100%;
	height:60px;
	padding:10px 10%;
	background-color:rgb(0,220,250);
	color:white;
	text-decoration:none;
	font-size:17px;
	font-weight:bold;
}
/*section p{
text-align:justify;
}*/



section iframe{
	width:60%;
	height:400px;
}
}