*{
    margin: 0;
    padding: 0;
}

#feed-noticias{
    width: 80%;
    margin: 40px auto;
}

#feed-noticias a{
    text-decoration: none;
}

#feed-noticias .noticia{
    display: flex;
    margin-bottom: 30px;
}

#feed-noticias .noticia .imagens{
    width: 50%;
    padding: 10px;
    display: grid;
    place-content: center;
}

#feed-noticias .noticia .imagens img{
    width: 100%;
    border-radius: 10px;
}

#feed-noticias .noticia .texto{
    width: 50%;
    display: grid;
    place-content: center;
}

#feed-noticias .noticia .texto h1{
    font-weight: 700;
    color: #c60202;
    width: 95%;
    margin: 0 auto 15px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
}

#feed-noticias .noticia .texto p{
    width: 95%;
    margin: auto;
    color: #3d81da;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-align: justify;
    border-left: 4px rgb(72, 99, 253) solid;
    padding-left: 10px;
}

@media (max-width:1400px){
    #feed-noticias{
        width: 90%;
    }
}

@media (max-width:900px){
    #feed-noticias .noticia{
        display: block;
        border-bottom: 2px solid rgba(0, 0, 255, 0.429);
    }

    #feed-noticias .noticia{
        padding: 10px 0 10px;
    }

    #feed-noticias .noticia .imagens{
        width: 100%;
    }

    #feed-noticias .noticia .imagens img{
        width: 95%;
    }

    #feed-noticias .noticia .texto{
        width: 100%;
        display: grid;
        place-content: center;
    }
}