@font-face
{
font-family: 'Lato-Regular';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}





body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    
    justify-content: space-between;
    min-height: 100vh;
    
    
    background-color: white;
    font-family:'Lato-Regular';  
}

ol {
    display: block;
    list-style-type: decimal;
    padding: 0;
}


/* HEADER */

body header {
    background-size: auto;    
    padding: 0;
    margin: 0;
    background-color: black;
}

body header div img{
    width: 3em;
}


header ul{
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 1em;
    padding-right: 1em;
}

header ul li{
    width: 10em;
    height: 2em;
    margin-left: .20em;
    margin-right: .20em;
    
   
    display: flex;
}

header ul li a{
    width: 100%;
    height: 100%;
    background-color: lightgreen;
    color: black;
    text-decoration: none;
    font-weight: bold;
    
    
    display: flex;
    justify-content: center;
    align-items: center;
}



/* TERMINA HEADER */




/* MAIN */

body main{
    width: 70%;
    margin: auto;
    text-align: center;
    
    flex-grow: 1;
}

body main li{
    list-style: none;
    
}

body main ul{
    padding: 0;
    
}

/* TERMINA MAIN */




/* FOOTER */

footer {
    
    background-color: #eaeaea;
    padding: 1em;
    margin: 2em 0 0 0;
    justify-content: space-between;
    box-sizing: border-box;
}

/* TERMINA FOOTER */




/* CLASES */

.logo{
    display:flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    width: 20%;
    margin-top: 1em;
    max-width: 200px;
}

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

.contenedor {
    display: flex;
    flex-direction: row;
    max-width: 50em;
    margin: 0 auto;
}

.contenedor-redondeado-verde{
    background-color: lightgreen;
    border-radius: 20px;
    padding: 1em;
    margin: 1em;
}

.usuario{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    text-align: center;
    max-width: 20em;
}

.usuario img{
    border-radius: 50%;
    height: 50vw;
    width: 50vw;
    max-width: 15em;
    max-height: 15em;
    border: .25em solid lightgreen;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35) inset, 0 .35em .5em rgba(0, 0, 0, .35);
    margin-top: 1em;
}

.plan img{
    max-width: 15em;
}

.redes-sociales img {
    max-width: 5em;

}

.linea{
    background-color: lightgreen;
    height: 0.5em;
}

/* TERMINA CLASES */