#latest {
    padding-top: 120px;
    height: 350px;
    background-image: url(../images/wallpaper/newspaper.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

h1 {
    text-align: center;
    font-size: 90px;
    letter-spacing: 2px;
}

h2 {
    text-align: center;
    font-size: 30px;
    padding-bottom: 5px;
    padding-top: 75px;
    letter-spacing: 0;
}

#news-wrapper {
    padding-top: 150px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.news {
    width: 80%;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 250px;
}

.news-big {
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.moreNewsbtn {
    margin-bottom: 150px;
    color: #1a1a1a;
    font-size: 20px;
    background-color: #C7B299;
    padding: 15px 20px;
    border-radius: 100px;
    margin-top: 50px;
    transition: 0.2s;
}

.moreNewsbtn:hover {
    transform: scale(1.1);
}

.news-big img {
    margin-left: 0px;
    margin-bottom: 50px;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.news img {
    flex: 1;
    width: 50%;
    margin-left: 20px;
    display: block;
    border-radius: 2px;
}

.news div {
    flex: 1;
    display: block;
    width: 50%;
    margin-right: 20px;
}

.date {
    text-align: left;
    font-size: 20px;
    font-family: 'jost-light';
}

.title {
    text-align: left;
    padding-top: 10px;
    padding-bottom: 15px;
    font-size: 25px;
    font-family: 'jost-bold';
}

.summary {
    text-align: left;
    padding-top: 10px;
    font-size: 20px;
    font-family: 'jost-medium';
}

.author {
    text-align: left;
    padding-top: 20px;
    margin-bottom: 40px;
    font-size: 20px;
    font-family: 'jost-bold';
}

#imgInArticle {
    margin-left: 0px;
    margin-bottom: 50px;
    width: 100%;
    max-height: 450px;
    object-fit: contain;

}

@media only screen and (max-width: 900px) {
    .author {
        font-size: 15px;
    }

    .summary {
        font-size: 15px;
    }

    .date {
        font-size: 15px;
    }

    .title {
        font-size: 20px;

    }

    .news {
        flex-direction: column-reverse;
    }

    .news img {
        margin-left: 0px;
        margin-bottom: 20px;
        width: 100%;
        max-height: 250px;
        object-fit: cover;
    }

    .news div {
        width: 100%;
    }

    .moreNewsbtn {
        font-size: 15px;
    }
}