#page-content {
    text-align: center;
}
.page-cont {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
    .product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* align-items: flex-start; */
    }
        article.product {
            max-width: 300px;
            background-color: #fbf9ea;
            padding: 16px;
            border-radius: 16px;
            margin: 0 8px 16px 8px;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, .25);
        }
            .product h2 {
                margin-top: 0;
            }
            img.prod-thumb {
                max-height: 150px;
            }

@media screen and (max-width: 740px) {
    .product-list {
        display: block;
    }
    article.product {
        margin: 0 auto 16px auto;
    }
}