.article-section{
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-block: 40px;
    width: 70%;
}

.article-section div{
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    
}

h4{
    margin: auto;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.3);
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 30px;
}

h3, p{
    width: 100%;
}

p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.707);
}

h3 {
    font-size: 2.7rem;
}


@media screen and (max-width: 600px) {
    .article-section{
        width: 95%;
    }

    .article-section div{
        height: 200px;
    }

    h3 {
        font-size: 1.8rem;
    }

    p{
        font-size: 1.3rem;
    }
}