.news-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 45px;
    background-color: #013243;
    color: white;
    white-space: nowrap;
}

.news-container a {
    color: white;
}

.news-container a:hover {
    color: white;
}

.news-title {
    display: flex;
    letter-spacing: 1.5px;
    font-size: 27px;
    font-weight: bold;
    margin: 10px;
    margin-right: 20px;
}

@media only screen and (max-width: 1300px) {
    .news-container {
        white-space: unset;
    }

    .news-title {
        text-align: center;
    }
}

@media only screen and (max-width: 1090px) {
    .news-container {
        flex-direction: column;
        padding: 30px;
    }

    .news-content {
        text-align: center;
    }
}
