main {
    display: flex;
    justify-content: center;
    height: 100%;
    flex-wrap: wrap;
}

article {
    width: 40vh;
    border-radius: 16px;
    background-color: white;
    
    margin: 16px;

    overflow: hidden;
}

img.cover {
    width: 100%;
    height: 20vh;
    margin: 0;
    object-fit: cover;
}

h1.article.title {
    font-family: 'black';
    text-align: center;
    font-size: 24px;
    margin: 16px 0;
}

a {
    text-decoration: none;
    color: black;
}

@media only screen and (max-width:600px) {
    h1.header {
        font-size: 15vw !important;
        text-shadow: 1vw 1vw black !important;
    }
}