/*----------------universales-----------------*/


*{
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "montserrat", sans-serif
}


body{
    margin: 0;
    padding: 0;
    background-color: rgb(195, 244, 240);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-content: center;

}  


header, footer{ 
background-color: #223471;
}


.material-icons {
    padding-right: .25em;
}

#llamamenu .material-icons {
    padding-right: 0;
}

img{
    max-width: 100%;
    height: auto;
}

main section{
    margin-top: 1em;
    margin-bottom: 1em;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*-------------------header--------------------*/


header nav a,
header nav button {
    color: rgba(255,255,255,.75);
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav a:hover,
header nav button:hover {
    background-color: rgba(0,0,0,0.5);
    color: white;
}

header nav button {
    background: none;
    cursor: pointer;
    padding: .5em;
}

header nav ul {
    display: flex;
}

header img{
margin-right: 2em;
}


header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contenedor{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    
    max-width: 50rem;
    margin: 0 auto;
    padding: 1rem;
}


/*------------------secciones------------------*/

h1, h2, h3{
    color: darkblue;
    font-weight: 900;
    text-align: center;
}

h6{
    font-size: 7pt;
    margin-top: 1em;
    margin-bottom: 1em;
   
}

.descripcion{
    align-items: center;
}

.perfil img{
    border-radius: 50%;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);
    
}

.descripcion > div{
    
    border-radius: 1em;
    padding: 1.5em; 
    margin: 1em;
    width: 20em;
    height: auto;
    color: darkblue;
    background-color: #aeeaea;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);
   
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 1em;
    background-color: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    align-content: center; 
    align-items: center;
}

nav ul li {
    flex-basis: 23%;
}

nav ul li a {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    text-align: center;
    padding: .125em .5em;
    border-radius: 4px;
    
}

nav ul li a:hover{
    background-color: rgba(0, 126, 126, 0.5);
}

.grupo{
    display: block;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    
    background-color: none;
}

.grupo img{
    border-radius: 50%;
}


.formales{
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 1em;

}

figure{
    margin: 0;
    padding: 0;
   
}
figure img{
    max-width: 100%;
    height: auto;
}

.comitente, .objetivo, .contenido, .propuesta, .usuario {
    padding: 1em;
}

.webapp{
    margin: 0;
    padding: 0;
}

footer{
    color: azure;
    font-size: .5em;
    margin: 0;
    padding: 1em;
}

footer img{
    max-width: 20em;
}


/*-------------------media---------------------*/

@media (min-width: 35em) {
    
    header nav button {

    }
    
    header nav ul {

    }
    

}