/* image galleries for events page */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.eventrow {
    padding-bottom: 1em;
}

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

/* Style the images inside the grid */
.photocolumn img {
    opacity: 1;
    cursor: pointer;
}



/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
