article {
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content {
    width: 70ch;
    margin: auto 20px;
}

img {
    width: 450px;
    height: 666px;
    object-fit: cover;
}

h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

p {
    font-size: 1rem;
    color: rgb(85, 85, 85);
}

/* variation */

.centered-image-article img {
    width: 100%;
    max-height: 80vh;
    margin-bottom: 30px;
}

.left-image-article {
    flex-direction: column;
    align-items: center
}

.right-image-article {
    flex-direction: column;
    align-items: center;
}

/* Media Queries */
/* Tablet */
@media screen and (max-width: 1025px) {
    article {
        width: 95%;
        margin: 30px auto;
    }

    .text-content {
        width: 90%;
    }

    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.2rem;
    }

    /* variation */
    .centered-image-article img {
        max-height: 50vh;
        margin-bottom: 20px;
    }


}

/* Tablet */
@media screen and (max-width: 600px) { 
}