@charset "utf-8";
* {
    box-sizing: border-box;
}
*{ 
    font-family:"Roboto", sans-serif;
}

/* BODY */ 
body {
    background-color:#1A1A1A;
    display: flex;
    flex-direction: column;
}

/* HEADER DGPC Y FADU */
body header {
    background-color: #F2F2F2;
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding: 1em;
    max-height: 3em;
    max-width: 100%;
}

/* NAVEGACION */

.web{
    color:lightblue;
}

body nav ul {
    list-style-type: none;
    background-color:#333333;  
    display: flex;
    flex-direction: row;
    justify-content: center;
    }
body nav ul li a {
    list-style-type: none;
    padding: .5em 1em .5em 1em;
    display: flex;
    align-items: center;
    color: #E6E6E6;
    background-color:#333333;  
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    height: 2em; 
    font-size: 1.2em;
    display: block;
    margin: .25em;
}


/* JIMENA */
body main { 
    flex-grow: 1;
    display: flex, 
}
main div figure{
    display: flex;
    justify-content: center;
    
}
body main img{
    max-height: 15em;
    box-sizing: border-box
}

/* TEXTOS */ 
h1 {
    display: flex;
    color: #F2F2F2;
    padding: 1rem;
    justify-content: center;
    font-size: 1.5em;
    background-color:#333333;
}

h3{
    display: flex;
    color:#CCCCCC;
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
    justify-content: center;
}
main div p{
    display:flex;
    color:#CCCCCC;
    font-weight: lighter; 
    text-align: center;
}

/* IMAGEN PROPUESTA */
body main section figure {
    display: flex;
    justify-content: center;
}

.propuesta{
    max-height: 50em;

}

/* GABRIELA Y IRINA TAGS */

section ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 1em;
    }

section ul li a {
    text-decoration: none;
    }

/* IMAGENES REDONDAS */
section ul{
    display: flex;
    justify-content:center;
}
section ul li img{
    display: flex;
    padding: 0.5em;
    border-radius: 100%;
    max-width: 130px;
    max-height: 130px;
}

/* FOOTER */
footer {
    display: flex;
    color:#CCCCCC; 
    background-color:#333333;
    font-style: italic;
    height: auto;

    text-align:justify;
    padding: 1rem;
}

/* a partir de un ancho de 900px */
@media (min-width:56em){
    
       
    main{
        display: flex; 
        justify-content: center;
        
    }
    h1{
     background: none; 
        padding: 0;
        justify-content: center;
        text-align: center;
    }
    
    .usuario{
        background-color: rgba(230, 197, 197, 0.51);
        border-radius:3%;
        max-width: 30em;
    }
    
    .ppropuesta{
        margin-left: 3em;
        justify-content: center;
        
    }
    .propuesta{
        max-height: 20em;
        display: flex;
    }
    main div p{
        color: #333333;
    }
    h3{
        color: #333333;
    }
    
    
    
    }


