.many-news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 5%;
    padding-bottom: 5%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-right: 2px #e6e4e4 solid;
    border-left: 2px #e6e4e4 solid;
    border-bottom: 2px #e6e4e4 solid;
}

.many-news-title {
    width: 100%;
    text-align: center;
    padding: 10px;
    text-align: right;
    border-bottom: 2px #e6e4e4 solid;
    border-top: 3px #410000 solid;
}

.many-news-title a {
    float: left;
    margin-left: 1vw;
    color: rgb(0, 0, 0);
    margin-top: 1vw;
}

.many-news-title a:hover {
    color: #410000;
    transition: all 0.55s ease;
}

.many-news-title h2 {
    font-size: 1.9rem;
    margin-right: 1vw;
    color: black;
}

.manyNews {
    position: relative;
    width: 28%;
    display: inline-block;
}

.manyNewsImgContainer {
    width: 100%;
    height: 200px;
    position: relative;
}

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

.tagContainer {
    width: 100px;
    position: absolute;
    position: absolute;
    top: 5%;
    right: 0;
    text-align: center;
}

.newsTag {
    width: 100%;
    padding: 10px;
    background-color: #410000;
    color: white;
}

.image-text {
    color: black;
    background-color: #ffffff;
    border-bottom: 3px #410000 solid;
    padding: 5px;
    text-align: right;
}

.image-text h2 {
    font-size: 18px;
}

@media screen and (min-width: 851px) and (max-width: 1200px){
    .image-text h2{
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 850px){
    .many-news-container{
        flex-direction: column;
        margin-bottom: 20%;
    }

    .manyNews{
        width: 95%;
    }

    .image-text h2{
        font-size: 1rem;
    }

    .tagContainer{
        width: 70px;
    }

}