.grid {
   padding-left: 3%;
}
.sort {
    width: 100vw;
    display: flex;
    justify-content: right;
    padding-right: 10%;
    padding-top: 1%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    align-items: center;
}

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

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    filter: grayscale(1) brightness(0.5);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s linear;
}
.column img:hover {
    filter: grayscale(0);
}
@media screen and (max-width: 800px) {
    .column {
        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 {
        flex: 100%;
        max-width: 100%;
    }
    .column img {
        filter: grayscale(0) brightness(1);
    }
}