@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;
    box-shadow: 1px 1px 5px #000;
}

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: auto;
    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 1em 1em 1em;
    justify-content: space-between;
    box-sizing: border-box;
}
.contenedor {
    display: flex;
    flex-direction: row;
    max-width: auto;
}

/* TERMINA FOOTER */




/* CLASES */

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

.header {
    position: fixed;
    left: 0;
    top:0;
    right: 0;
 }

.navegacion ul li a:hover {
    background-color: green;
    transition: all 0.4s linear;
}

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

.main{
    padding-top: 12rem;
    
    
}



.contenedor-redondeado-verde{
    background-color: lightgreen;
    border-radius: 10px;
    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;
    text-decoration: none;
}

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

}

/* PLAN */

.plan {
    
padding-top: 12rem;
 text-justify: inter-word;     
}
.plan img{
    max-width: 50vw;
     display: flex;
    flex-direction: row;
    margin: 0 auto;
}

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


.linea{
    background-color: lightgreen;
    height: 0.5em;
    border-radius: 50px;
}


/* TERMINA PLAN */

main section ol a{
    text-decoration: none;
}
/* TERMINA CLASES */

/* MAPA */
#imagenes-mapa{
    max-width: 90%;
    margin:.5em;
}

/* TERMINA MAPA */

/* MOBILE FIRST */ 

@media screen and (min-width: 480px){
    body{
        background-color: white;
    }
}

@media screen and (min-width: 760px){
    body{
        background-color: white;
    }
    
    body main{
    width: 80%;
    margin: auto;
    text-align: center;
    
    flex-grow: 1;
}
    

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

    .usuario img{
    border-radius: 50%;
    height: 20vw;
    width: 20vw;
    margin-left: 1em;
    margin-right: 1em;

    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;
}
}

@media screen and (min-width: 950px){
    body{
        background-color: white;
    }
    
    body main{
    width: 80%;
    margin: auto;
    text-align: center;
    
    flex-grow: 1;
}
   

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

    .usuario img{
    border-radius: 50%;
    height: 10vw;
    width: 10vw;
    margin-left: 2em;
    margin-right: 2em;

    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;
}
    
    .contenedor-redondeado-verde{
    background-color: lightgreen;
    border-radius: 20px;
    padding: 1em;
    margin: 1em 15em;
}
}
