@charset "utf-8";
/* CSS Document */
/* -------------------------------------------------HEADER-------*/
h3{
	color:red;
	font-size: 30px;
	
}
h1{
	color:gray;
	text-align: center;
	
}
input{
	width: 90%;
	height: 100px;
	font-size: 30px;
	text-align: center;
}
header {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	border-bottom: 1px solid darkblue;
}
	header>img{
		margin-left: 10px;
	}
#icoMenu {
    min-width: 30px;
    min-height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10%;
}
/* -------------------------------------------------NAV-------*/
#menu {
    display: none;
}
nav ul {
    margin: 0;
    padding: 0;
    width: 100%;
}
nav>ul>li {
    width: 100%;
    height: 50px;
    margin: 0;
    list-style: none;
    background-color: darkblue;
    display: flex;
    align-items: center;
    justify-content: center;
	border-bottom: 1px solid blue;
	
}
nav>ul>li:hover {
    background-color: lightblue;
}
nav>ul>li>a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    padding: 10px;
}
/* -------------------------------------------------MAIN-------*/
main {
    width: 90%;
	height: auto;
	border:3px solid black;
	margin-left: auto;
	margin-right: auto;
    display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
form{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
footer{
	margin-top:5%;
	padding:5%;
	height: 500px;
	min-height: 500px;
	background-color: black;
	color:white;
	text-align: center;
}
/*--------------------------------------------------------------------------------------------------------MEDIAS*/

@media screen and (min-width:400px){
	#fotos{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content:center;
	}
	#fotos>img{
		width: 30%;
		max-height: 100px;
		min-height: 100px;
	}
}
@media screen and (min-width:800px){
	#header{
		border-bottom: 1px solid white;
	}
	#icoMenu{
		display: none;
	}
	#menu{
		width:100%;
		height: 60px;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	nav>ul{
		width: 20%;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	nav>ul>li{
		float: left;
		background-color: white;
		border: 1px solid white;
	}
	nav>ul>li>a{
		color:blue;
		float: left;
	}
	.noticias{
		background-color: aliceblue;
		width: 49%;	
		margin-bottom: 0;
		padding-bottom: 0;
		max-height: 400px;
	}
	.noticias>img{
		max-height: 270px;
	}
	#conteinerNoticias{
        display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}	
	#fotos>img{
		width: 30%;
		max-height: 200px;
		min-height: 200px;
	}
}
@media screen and (min-width:1000px){
		.noticias{
		background-color: aliceblue;
		width: 24%;
		margin-bottom: 0;
		padding-bottom: 0;
		max-height: 350px;
	}
	.noticias>img{
		max-height: 200px;
	}
	#fotos>img{
		width: 30%;
		max-height: 250px;
		min-height: 250px;
	}
}
