main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

.main-content{
    display: grid;
    place-items: center;

    padding: 4rem 0;
}

.news{
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 4rem;

    width: 70%;
    max-width: 80rem;
}

.title-wrapper{
    margin-bottom: 2rem;
}

.title-wrapper h2{
    color: var(--primary);
    font-size: 2.7rem;
}

.title-wrapper span{
    color: var(--darker);
    font-size: 1.6rem;
}

img{
    width: 100%;
    height: 100%;
}

.sneak-peek{
    color: var(--darker);
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 2rem 0 4rem 0;
}

.read-more{
    padding: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    transition: all .2s;
}

.read-more:hover{
    filter: brightness(110%);
}

@media (max-width: 800px){
    .news{
        width: 85%;
    }
}