<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    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 &gt; #logo{
    display: inline-block;
    margin-right: 1em;
    flex-grow: 3;
    font-size: 1.005em;
}

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

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

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

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

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

.menu &gt; #sesion a{
    color: #FFF;
    text-decoration: none;
    padding: 1.79em 0.2em 1.79em;
    font-size: 1.3em;
}
.menu &gt; #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;
    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);
    padding: 1em;
}

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

#articulos h2{
    font-size: 20px;
    text-align: left;
    letter-spacing: 5px;
    width: 90%;
    text-decoration: none;
    color: black;
}


.articulo{
    padding: 1em;
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 1em;
    align-items: center;
    overflow: hidden;
    border: 1px solid #FF5E5B;
    background-color: #FFF7F7;
    border-radius: 5px;
}

.articulo p{
    text-align: justify;
}

.imagen{
    padding: 0px;
    width: 500px;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
}

.descrip {
    text-decoration:none;
    color: black;
    padding: 1em;
    text-align: justify;
    width: 700px;
    height: auto;
}

.articulo a{
    text-decoration:none;
    padding: 0px;
    margin: 0px;
    text-align: justify;
}

.descrip p{
    width: auto;
    height: auto;
}

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

/* 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%;
    }
    
}</pre></body></html>