* {
    box-sizing: border-box;
}
/* The grid: Four equal columns that floats next to each other */
.column {
    float: left;
    width: 25%;
    padding: 10px;
}

/* Style the images inside the grid */
.column img {
    opacity: 0.8;
    cursor: pointer;
    width: 100%;
     height: auto;
}

.column img:hover {
    opacity: 1;
}

/* Clear floats after the columns */
.row-2:after {
    content: "";
    display: table;
    clear: both;
}
/* Expanding image text */
/* #imgtext {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
} */
