@import url('https://fonts.googleapis.com/css?family=Montserrat');

.newsContainer{
    display: flex; 
    justify-content: center; 
    flex-direction: column; 
    align-items: center;
    font-family: 'Montserrat';
}

.newsSection{
    display: flex;
    width: 90%;
    background-color: #002D72;
    height: fit-content;
    border-radius: 25px;
    justify-content: center;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.newsItem{
    height: fit-content;
    text-align: center;
    justify-content: center;
    flex: 50%;
    display: flex;
    background-color: #ffffff;
    margin: 15px 15px;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    color: #000000;
}

.newsImage{
    flex: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 15px;
}

.newsCaption{
    flex: 50%;
    padding: 15px 15px;
    background-color: #ffffff;
    width: 50%;
    text-align: center;
    align-items: center;
}

.newsCaption h1{
    font-weight: bold;
}