/*
font-family: 'Montserrat', sans-serif;
font-family: 'Righteous', sans-serif;
*/

/* ESTILOS GENERALES */
body {
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Righteous', sans-serif;
}

a{
    /* quito a todos los enlaces la barrita de subrayado */
    text-decoration: none;
    /* pongo el color de los enlaces al color inicial */
    color: initial;
}


.blog{
    padding: 50px 15%;
}

.noticia-blog{
    display: flex;

    /* hueco entre columnas */
    gap: 2%;

    /* Alinear verticalmente contenido (sólo funciona
    con cajas flexibles) */
    align-items: center;

    margin: 50px 0px;
}

.noticia-img{
    width: 33.33%;
    
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.noticia-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.noticia-txt{
    width: 66.66%;
}

.alinear-dcha{
    text-align: right;
}

.noticia-txt h2 a{
    font-size: 1rem;
    background-color: #00be7f;
    color: #f0f0f0;
    display: inline-block;
    padding: 5px 15px;
    border-left: #f0f0f0 5px solid;

}
.noticia-txt h3 a{
    font-size: 2rem;
    color: #00be7f;
    font-weight: 300;
}

.noticia-txt p a{
    color: #00be7f;
    font-weight: 600;
}