.images-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.image-item {
    flex: 95%;
    margin: 5px;
    background-size: cover;
    background-position: center;
}
.news-title {
    flex: 80%;
    text-align: left;
    align-self: center;
}
.news-title.shown {
    display: block;
}
.news-main-image {
    flex: 80%;
    text-align: center;
    align-self: center;
    background-size: contain;
    background-position: center;
    min-height: 600px;
    padding: 10px;
    background-repeat: no-repeat;
}
.news-paragraph {
    flex: 80%;
    text-align: left;
    align-self: center;
    letter-spacing: 0px;
    padding: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.news-outro {
    flex: 80%;
    text-align: left;
    align-self: center;
    letter-spacing: 0px;
    padding: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    top: 40px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
}

@media only screen and (min-width: 768px) {
    .header-container {
        height: 60px;
    }
    .header-title {
        font-size: 48px;
    }
    .content {
        top: 44px;
        left: 15vw;
        right: 15vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .image-item {
        flex: 32%;
        height: 20vw;
        min-width: 400px;
    }
    .news-title {
        font-size: 24px;
    }
    .news-main-image {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .image-item {
        min-height: 50vw;
    }
}

.item-button:hover {
    background-color: rgba(255, 255, 255, 0.214);
}
