@charset "utf-8";
/* CSS Document */

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

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

.wrap img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
/* Container needed to position the overlay. Adjust the width as needed */
.wrap {
  position: relative;
  
	flex: 32%;
	max-width: 32%;
	margin: 0 4px;
  
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  
  width: 100%;
 
  opacity:1;
  
  font-size: 20px;
  padding: 20px 0px;
  text-align: center;
}
.overlay a{
	text-decoration: none;
	color: #006;
}

.gallery{
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  wrap {
  	flex: 48%;
	max-width: 48%;
	margin: 0 4px;
  
}
}



/* 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%;
  }
}
