* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F8FAFC;
}

.container {
    margin-top: 42px;
    max-width: 736px;
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    color:black;
}

.separator {
    display: block;
    margin: 42px auto;
}

.article {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-bottom: 52px;
}

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

.articles-text {
    align-content: center;
}

.articles-text h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color:black;
    margin-bottom: 16px;
}

.articles-text p {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4D5562
}

.author-info {
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    color: rgb(55, 65, 81);
}

.author-info a {
    text-decoration: none;
}

.author-info a:active{
    color: blue;
}

@media (max-width: 600px) {
    .container {
        max-width: 370px;
    }

    .article {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 10px;
    }
}