/*
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial;
}

.header {
    text-align: center;
    padding: 32px;
}

.row {
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
/* .column {
    -ms-flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
} */

/* Responsive layout - makes a two column-layout instead of four columns */
/* @media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
} */

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
/* @media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
} */
#gallery {
    display: grid;

    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* grid-template-rows: repeat(auto-fill, 300px); */
    grid-gap: 20px;
    align-items: stretch;
    max-width: 1400px;
    width: 80%;
    margin: auto;
}
#gallery img {
    /* border: 1px solid #ccc; */
    max-width: 100%;
    object-fit: cover;
    height: 300px;
    width: 100%;
}

@media only screen and (max-width: 800px) {
    #gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    #gallery img {
        height: 250px;
    }
}

body
{
    background-color: black;
}
#back > a
{
    display: block;
    color: white;
    padding: 20px 20px;
    font-family: Raleway Regular;
}