

/* Gallery for album of pictures */
img.gallery {
	/* margin: 3px; */
	margin-top: 5px;
	/* border: 1px solid rgb(61, 161, 51); */
	max-width: 100%;
	max-height: 700px;
	/* width: 280px; */
	width: 97%;
	height: auto;
	border-radius: 5%;
	/* float: left; */
	vertical-align: middle;
}

@media (max-width: 500px) { 
 img.gallery { 
	 width: 99%; 
 } } 


.gallery_column {
	flex: 25%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 450px) {
  .gallery_column {
    flex: 100%;
    max-width: 100%;
  }
}

.gallery_holder {
	/* display: inline-block; */
	display: flex;
	max-width: 100%;
	flex-wrap: wrap;
	/* padding: 0 4px; */
}