

.windowCenter{

	display: flex;
	margin: 0;
	background-color: white;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	font-family: "Basier Circle";
	font-size: 12px;
	font-weight: 200;
	align-items: center;
	justify-content: center;
}

.windowCenter > h2{
	width:93%;
	font-weight: 200;
}

.windowCenter > h2 > p{
	margin-top: 7px;
	margin-bottom: 0;
	font-weight: 200;
}

.blog > .windowCenter > content{
	font-family: "Basier Circle";
	font-size: 15px;
	background-color: lightgrey;
	padding: 1% 5%;
	display: flex;
	border: solid 1px #000;
}

.blog > .windowCenter > content:hover{
	background-color: #ffaf61 ;
	cursor: pointer;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 10px;
  padding: 2%;
   background-color: rgba(0, 0, 0, .025) ;
 }

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: imge .3s forwards;
  border: solid .1em #000;
 }


.window:hover .overlay2{
  animation: imge .5s forwards;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.overlay2 {
	position: fixed;
  margin: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.25);
  visibility: hidden;
  cursor: pointer;
}


.overlay2.active {
  position: fixed;
  margin: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.25);
  visibility: visible;
  cursor: pointer;
 
}


.text4 {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Instrument Sans";
  cursor: pointer;
}

.blog{
	/*border: groove  2px #000;*/
	margin-top: 3%;
}

.blog > .windowCenter > content{
	font-family: "Basier Circle";
	font-size: 15px;
	background-color: lightgrey;
	padding: 1% 5%;
	display: flex;
	border: solid 1px #000;
}

.blog > .windowCenter > content:hover{
	background-color: #ffaf61 ;
	cursor: pointer;
}

