#noticia {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.noticiaTitle h1 {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    text-align: center;
}

#noticia .noticiaImage {
    height: 120px;
    margin-bottom: 20px;
}

#noticia .noticiaImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#noticia .noticiaText {
    width: 80%;
    margin: 0 auto 30px;
    color: #5b5a5a;
}

#noticia .materia {
    width: 100%;
}

#noticia .materia img {
    width: 100%;
}

@media (min-width: 800px) {
    #noticia {
        flex-direction: row;
    }

    #noticia > div {
        margin: 0 20px;
    }

    #noticia .noticiaImage {
        height: 250px;
    }
}

@media (min-width: 1000px) {
    #noticia {
        width: 80%;
        margin: 4rem auto 8rem;
        align-items: initial;
    }

    #noticia .noticiaImage {
        height: 400px;
    }

    #noticia .noticiaText {
        font-size: 1.3rem;
    }

    .noticiaTitle {
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .noticiaTitle h1 {
        text-align: initial;
    }
}
