#news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75%;
}

.news-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

#news h2 {
    color: #fff;
    font-size: 35px;
}

.news-box {
    width: 30%;
    text-align: center;
}

.news-image {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border: 3px solid antiquewhite;
    border-radius: 5%;
}

.news-p {
    width: 50%;
    text-align: center;
}

@media screen and (max-width:1170px) {
    #news {
        width: 80%;
    }

    .news-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 50px;
    }

    .news-box {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .news-p {
        width: 100%;
        text-align: justify;
    }

}