body{
    margin: 0;
}

/* --- HEADER --- */

.fuenteEnlace{
    font-size: 1.5em;
    text-decoration: none;
}
.enlace{
    position: relative;
    text-decoration: none;
    color: black;
    padding: 10px;
}
.enlace:hover{
    color: black;
}
.centro::after{
    text-decoration: none;
    position: absolute;
    content: '';
    background: black;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 50%;
    transition: all 0.4s ease;
}
.centro:hover::after{
    left: 0;
    width: 100%;
}

/* -- FIN HEADER -- */


/* --- SECTION --- */
.enlace2{
    position: relative;
    text-decoration: none;
    color: white;
    padding: 10px;
    transition: all .7s ease;
}
.enlace2:hover{
    font-size: 1.8em;
    color: white;
    transition: all .7s ease;
}


.fondoNovedades{
    background: lightblue;
}
.fondoPolitica{
    background: lightpink;
}
.fondoEconomia{
    background: rgb(125, 155, 125);
}
.fondoSociedad{
    background: rgb(133, 107, 73);
}
.fondoCultura{
    background: rgb(121, 40, 40);
}
.fondoCiencia{
    background: darkslategrey;
}
.fondoTecnologia{
    background: rgb(60, 202, 126);
}


.cajaImg{
    overflow: hidden;
    object-fit: contain;
}
.cajaImg img{
    transition: all .7s ease;
}
.cajaImg:hover img{
    transition: all .7s ease;
    transform: scale(1.1);
}
.cajaImg:hover{
    cursor: pointer;
}

/* -- FIN SECTION -- */


/* --- FOOTER --- */
/*
.footer{
    margin-top: 20px;
} 
.iconosFooter{
    display: flex;
}
.footer p{
    font-size: 1.1em;
}
.footer a{
    text-decoration: none;
    color: black;
} */
/* -- FIN FOOTER -- */