*{
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    padding-top: 70px;
}

@font-face {
    font-family: geosans;
    src: url(../../../../fonts/GeosansLight.ttf);
}

body{
    display: flex;
    flex-direction: column;
    background-color: #ECF0F5;
    font-family:geosans;
}


/* Menú superior ----------------------------------------- */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:  #FF5E5B;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.59);
    z-index: 2; /* Para superponer menú, pues las imágenes, por alguna razón, estaban por encima del menú. */
}

.menu{
    width: 90%;
    margin: auto;
    max-width: 1920px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu > #logo{
    display: inline-block;
    margin-right: 1em;
    flex-grow: 3;
    font-size: 1.005em;
}

.menu > #logo a{
    color: #FFF;
    text-decoration: none;
    font-size: 2em;
    padding: 0.7em 0.5em 0.71em 0.5em;
}

.menu > #enlaces {
    flex-grow: 2;
}

.menu > #enlaces a{
    color: #FFF;
    text-decoration: none;
    font-size: 1.3em;
    padding: 1.79em 1.8em 1.79em 1.8em;
}

.menu > #enlaces a:hover{
    background-color: #C64947;
}

.menu > #sesion{
    flex-grow: 0;
}

.menu > #sesion a{
    color: #FFF;
    text-decoration: none;
    padding: 1.79em 0.2em 1.79em;
    font-size: 1.3em;
}
.menu > #sesion a:hover{
    color: #FFF;
    background-color: #C64947;
}

.icon-menu{
    display: none;
}

/* ------------------------------------------------------- */


/* Descripción ------------------------------------------- */

#descripcion{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: ;
    margin: 1em;
}
/* ------------------------------------------------------- */


/* Efectos Menu -------------------------------------------*/

.headroom{
    transition: transform .3s ease;
}

.headroom--pinned{
    transform: translateY(0%);
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.59);
}

.headroom--unpinned{
    transform: translateY(-100%);
}

/*-----------------------------------------------------------*/


/* Articulos --------------------------------- */

#articulos{
    background-color: white;
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around; 
    flex-wrap: wrap;
    border-radius: 5px;
    align-items: center;
    margin-bottom: 2em;
    margin-top: 1em;
-webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.28);
}

#articulos h2{
    text-align: left;
    letter-spacing: 15px;
    border-bottom: 2px solid #FF5E5B;
    width: 90%;
}


.articulo{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 1em;
    align-items: center;
    overflow: hidden;
}

.articulo .bold{
    font-weight: bolder;
    text-align: center;
    margin-top: 2em;
}

.articulo p{
    text-align: justify;
    width: 100%;
}


.articulo img{
    margin: 2em;
}


/* --------------------------------------------- */

/* Footer --------------------------------- */

footer{
    background-color: #8B8B8B;
    text-align: center;
    padding: 1em;
    margin: -8.4px;
    margin-top: 1em;
}


/* --------------------------------------------- */


/* Movil ----------------------------------------*/

@media screen and (max-width:1090px){ 
    .menu{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 20px;
    }
    
    .menu #logo{
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }  
    
   #logo #icon-menu{
        display: inline-block;
    }     
    
    #logo #icon-menu img{
        height: 20px;
        width: 20px;
    }   
    
    .menu #enlaces{
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-grow: 1;
        margin: 10px;
        align-items: center;
        font-size: 25px;
    }
    
    .menu #enlaces a{
        text-decoration: none;
        padding: 10px 50px;
    }    
    
    .menu #enlaces a:hover{
        text-decoration: none;
        padding: 10px 60px;
        border-radius: 20px;
    }
    
    .menu #sesion{
        flex-grow: 1;
        margin: 10px;
        font-size: 25px;
    }    
    
    .menu #sesion a{
        font-weight: bolder;
        color: white;
        background-color: #BF4040;
        text-decoration: none;
        padding: 7px 170px;
        border-radius: 20px;
    }  
    
    .menu #sesion a:hover{
        font-weight: bolder;
        color: white;
        background-color: black;
        text-decoration: none;
        padding: 7px 170px;
    }
    
    section{
        margin-top: 20px;
    }
    
    #descripcion{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    } 
    
    #descripcion .izquierda{
        flex-basis: 35%;
        text-align: center;
    }    
    
    #descripcion .centro{
        flex-basis: 35%;
        text-align: center;
    }    
    
    #descripcion .derecha{
        flex-basis: 35%;
        text-align: center;
    }
    
    #articulos{
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        align-items: center;
        width: 90%;
    }
    
    .articulo{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #articulos h2{
        text-align: left;
        letter-spacing: 15px;
        border-bottom: 2px solid #FF5E5B;
        width: 90%;
    }
    
}