.news-header{
    width: 100%;
    background: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
}

.news-header .news-header-main-text {
    /* background-color: green; */
    width: 70%;
    padding: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

@media only screen and (max-width: 1080px) {
    .news-header .news-header-main-text {
        width: 80%;
    }
}

@media only screen and (max-width: 700px) {
    .news-header-main-text p{
        font-size: 10px;
        padding-bottom: 5px;
    }

    .news-header .news-header-main-text {
        width: 98%;
        padding: 5px;
    }
}