
h1.section_title
{
    text-align: left;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}


button
{
    background: gray;
    border: 0;
    color: white;
    padding: 10px;
    width: 100%;
}

.grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
}

.grid > article
{
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
}

.grid > article img
{
    max-width: 100%;
}

.text
{
    padding: 0 20px 20px;
}

.text > button
{
    background: gray;
    border: 0;
    color: white;
    padding: 10px;
    width: 100%;
}
