html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #F8FAFC;
}

header {
    display: block;
    width: 70%;
    margin: 0 auto 30px; 
    text-align: center;
    padding: 30px 0px 0;
}

h1 {
    margin: 0 0 30px;
    font-size: 36px;
    font-weight: 600;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
}

time {
    font-size: 14px;
    font-weight: 500;
    color: #4D5562;
}

.article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 70%;
    margin-bottom: 40px;
}

.img-article {
    width: 160px;
    height: 160px;
    border-radius: 20px;
}

.article-title {
    width: 70%;
    margin-left: 50px; 
}

@media only screen and (max-width: 1200px){
    header {
        width: 90%;
        padding: 20px;
    }

    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    

    .article {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        align-items: center;
        width: 90%;
    }

    .article-title {
        width: 100%;
        margin: 10px 0 0 ;
    }
}
