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


.gallery {
	margin-top:3em;
  display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-gap: 1em;
}



.gallery img{
	display: block;
	width:100%;
}

.gall-pic-container {
  position: relative;
  box-shadow: -1px 1px 8px 1px rgba(0,0,0,0.67);
}

.gall-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #000;
}

.gall-pic-container:hover .gall-overlay {
  opacity: .7;
}

.gall-pic-title {
  color: white;
  font-size: 18px;
  position: absolute;
  top: 75%;
  left: 8%;
  
}

.gall-pic-text {
  color: white;
  font-size: 12px;
  position: absolute;
  top: 85%;
  left: 8%;

}