.cardMagazine { /* flex box */
    border: 4px groove #1e6483;
}

.front-page-blog { /* flex-item */
    max-width: 512px;
}

.comment-magazine { /*flex-item */
    font: 400 1.1rem "Raleway", sans-serif;
    letter-spacing: 0.0375rem;
    text-align: left;
    max-width: 512px;
    padding-inline: 2rem;
}

/* a button-like link */
#go-to-magazine {/* flex item */
    width: 100%;
    margin: 85px 0 0 0;/* it is centered */
}

 /* BREAKPOINTS WITH *//* CSS3 MEDIA QUERIES 
********************************************/
/* Very small devices | Reduce the size of some elements.
********************************************************* */
@media only screen and (max-width: 1088px) {
    .cardMagazine {
        flex-direction: column;
    }
    
    .comment-magazine {
        font: 400 1rem "Raleway", sans-serif;
        text-align: left;
        padding: 1rem;
    }
}