/* ESTILOS GLOBALES PARA PÁGINAS*/
body{
    /* Para que las imagenes no se opaquen */
    image-rendering: -webkit-optimize-contrast;
}
/*** TITULOS ***/
/*·· background del titulo ··*/
.titular-articles{
	background-color: #28badbff;
    height: 70px;
    color: white;
    display: flex;
    justify-content: center;
}

/*·· letra del titulo ··*/
.texto-titular-articles{
	font-style: oblique;
    font-size: xxx-large;
    font-weight: 600; 
}

/*### ESTILOS  MÓVIL ###*/
@media screen and (max-width: 767.98px) {
/*** TITULOS ***/
/*·· background del titulo ··*/
.titular-articles{
	background-color: #28badbff;
    height: 75px;
    color: white;
    display: flex;
}

/*·· letra del titulo ··*/
.texto-titular-articles{
	font-style: oblique;
    font-size: xx-large;
    font-weight: 600;
}
}
/*### FIN ESTILOS  MÓVIL ###*/

/*### ESTILOS (IPADS&TABLETS) ###*/
@media screen and (min-width: 768px) and (max-width: 991.98px) {

}
/*### FIN ESTILOS (IPADS&TABLETS) ###*/

/*### ESTILOS  DESKTOP ###*/
@media screen and (min-width: 992px) {
    
}
/*### FIN ESTILOS  DESKTOP ###*/