
[hidden] {
  display: none;
}


body{
	margin:0;
}
a{
	text-decoration: none;
	color: black;
}
p, h1, h2, h3, h4{
	margin: 0;
	padding: 0;
}

html {
background: #81BEF7;
    font-family:'Roboto', sans-serif;
    	box-sizing: border-box;
}
header { 
    color: white;
    text-align:center; 
    
}

nav {text-align:left;
    color: aliceblue;
}

h2 { text-align:center;
color: black;
}

nav {

    background-color:#585858;
    color:white;
    width:100%;
  
}
nav ul{
    display:flex;
    flex-direction:row;
    width:100%;
    padding: 0;
    

}

nav ul li {
    display:flex;
    flex-grow: 1;
    justify-content:center;

}

nav ul li a{

    color: white;
    display:flex;
    text-decoration:none;
    height:4em;
    align-items: center;
}


li:hover {
    color:darkgrey;
    background-color:#3399ff;
}


.logo{
	display:inline-block;
	max-height: 30px;
}
.enlace{
	display: inline-block;
	font-size: 20px;
	margin-left: 20px;
}
.enlaceGrupo{
	width: 100%;
	margin: auto;
	padding-top: 10px;
	font-size: 30px;
    text-align: center;
}


/* MAIN */
main{
	padding: 25px 15px 10px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.persona{
	display: flex;
	flex-direction: column;
	width: 260px;
	background: black;
	margin-bottom: 15px;
}
.fotoPersona{
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.persona h2{
	margin: 10px 0 5px 0;
	color: white;
}
.persona h3{
	margin-bottom: 15px;
	color: white;
}
.tematica h2{
	padding: 10px 0;
	margin-bottom: 15px;
	text-align: center;
	border-bottom: 1px solid black;
}
.tematica p{
	text-align: center;
	padding-bottom: 10px;
}

footer { background: #585858;
    color: white;
    padding: 15px; 
    text-align: justify;
}



/* MEDIAS QUERYS */

@media (min-width: 768px) {

	.bodyIndex, .bodyIntegrante{
		min-height: 100vh;
		display: flex;
		flex-direction: column;
	}

	/* HEADER */
	header{
		padding: 20px 15px 20px 10px;
		flex-wrap: nowrap;
		align-items: center;
	}
	.logos{
		order:0;
		width: 33.33%
	}
	.logo{
		max-height: 32px;
		padding-left: 10px;
	}
	.enlaceGrupo{
		width: auto;
		padding: 0;
		order: 1;
		width: 33.33%;
		font-size: 38px;
	}
	.enlaces{
		width: 33.33%;
		text-align: right;
		padding-right: 10px;
		order: 2;
	}
	.enlace{
		font-size: 30px;
	}

	/* MAIN */
	.mainIndex{
		flex-grow: 1;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
	}
	.tematica{
		width: 260px;
	}
	.tematica h2{
		font-size: 30px;
	}
	.tematica p{
		font-size: 20px;		
	}


@media (min-width: 1024px) {
	
	/* MAIN */
	.tematica{
		width: 100%;
	}


