.Noticias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    margin-top: 10%;
    margin-bottom: 10%;
}

.noticia {
    
    width: 300px;
    margin: 10px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    align-items: center;
}

.noticia:hover {
    transform: scale(1.05);
}

.imagen-noticia 
{
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.titulo {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.introduccion {
    font-size: 0.9em;
    margin-bottom: 5%;
}

