.gallery-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  
	/*Flex for Internet Explorer*/
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: row;
}

/* große Viewports */
@media all and (min-width: 30em) {
.gallery-container {
    flex-direction: row;
    
	/*Flex for Internet Explorer*/
	-ms-flex-direction: row;
  }
}

.gallery-entry{
	flex-grow: 1;
	border-radius: 10px 10px 10px 10px;
	border-style: solid;
	border-color: #d8e5f0;
	margin: 1em;
}

.gallery-entry-footer{
	float: left;
	font-size: 18px;
	font-weight: bold;
	background-color: #d8e5f0;
	background: linear-gradient(to bottom left, white 50%, #d8e5f0);
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 5px 5px 0px 0px;
}


.gallery-entry-footer-date{
	float: left;
	font-size: 14px;
	color: #5f707d;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
}

.gallery-entry-footer-title{
	float: left;
	font-size: 14px;
	text-decoration: none;
	color: #5f707d;
	padding-left: 10px;
	padding-right: 10px;
}

.gallery-entry-body{
	font-size: 16px;
	padding: 10px;
}

.gallery-picture{
	max-width: 200px;
	height: auto;
}