@charset "utf-8";
* {
    box-sizing: border-box;
}
*{ 
font-family:"roboto", sans-serif;
}
body{
    background-color:#F0FFFE;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    text-align: center;
}

/* HEADER */
body header {
    min-height: 100%;
    background-color: #F0FFFE;
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding: 1em;
    max-height: 3em;

}

/* NAVEGACION */

.web{
    color:lightblue;
}

body nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color:#F9724E;
    height: 3em; 
    }
body nav ul li a {
    color: white;
    font-family: "roboto", sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    background-color:#F9724E;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: .25em;
    padding: .5em 1em .5em 1em;
}

/* IMAGEN GABY */
body main div figure img{
    border-radius: 100%;
}

/* TEXTOS */ 
body main h1{
    color: #F9724E;
    background-color:#FFFFFF ;
    opacity:inherit
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    font-family: "roboto", sans-serif;
    height: 1.5em;

}
body main h3 {
    color: #333333;
    font-style: bold;
    font-size:  1.2em
}
body main p {
    color:#333333;
    font-weight: lighter; 
    text-decoration: none;
    text-align: center;
}

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

/* FOOTER */ 
footer p {
    color:#FFFFFF; 
    background-color:#F4C2B5;
    font-style: italic;
    text-decoration: none;
    text-align: center;
    height: 6em;
}

/* 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; 
    }
    body main p{
        margin-left: 1em;
        margin-right: 
    }

    main div p{
        color: #333333;
    }
    h3{
        color: #333333;
    }
    
    }
