@media (min-width: 1300px) {
    article {
        display: flex;
        flex-direction: column;
        margin: 60px 0;
        animation: fadeIn 1s;
    }

    h1 {
        margin: 24px 0;
        font-weight: bolder;
        font-size: 40px;
    }

    h2 {
        margin: 24px 0;
        font-weight: bolder;
        font-size: 30px;
    }

    p {
        margin: 24px 0;
        font-size: 20px;
    }

    #author-date {
        font-size: 18px;
        font-weight: lighter;
        font-style: italic;
    }

    .image-content {
        margin: 24px 0;
        align-self: center;
        max-width: 100%;
        margin: 20px 0;
        object-fit: cover;
        max-height: 400px;
    }
}

@media (min-width: 700px) and (max-width: 1300px) {
    article {
        display: flex;
        flex-direction: column;
        margin: 40px 0;
        animation: fadeIn 1s;
    }

    h1 {
        margin: 12px 0;
        font-weight: bolder;
        font-size: 38px;
    }

    h2 {
        margin: 12px 0;
        font-weight: bolder;
        font-size: 28px;
    }

    p {
        margin: 12px 0;
        font-size: 18px;
    }

    #author-date {
        font-size: 16px;
        font-weight: lighter;
        font-style: italic;
    }

    .image-content {
        margin: 24px 0;
        align-self: center;
        max-width: 100%;
        margin: 20px 0;
        object-fit: cover;
        max-height: 400px;
    }
}

@media (max-width: 700px) {
    article {
        display: flex;
        flex-direction: column;
        margin: 20px 10px;
        animation: fadeIn 1s;
    }

    h1 {
        margin: 6px 0;
        font-weight: bolder;
        font-size: 30px;
    }

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

    p {
        margin: 6px 0;
        font-size: 16px;
    }

    #author-date {
        font-size: 14px;
        font-weight: lighter;
        font-style: italic;
    }

    .image-content {
        margin: 24px 0;
        align-self: center;
        max-width: 100%;
        margin: 20px 0;
        object-fit: cover;
        max-height: 200px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(-200px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}
