.modul-gallery{
	min-height: 100px;
}

.modul-gallery-overview {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
}

.modul-gallery-overview-card {
	margin:10px;
	width: calc(33.3333% - 20px);
	min-width: 300px;
	height: 300px;
	
	background-color: gray;
	background-size: cover;
	
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	
	box-shadow: 3px 6px 15px black;
}

.modul-gallery-overview-card-name {
	padding: 30px;
	max-width: 70%;
	font-size: 1.4em;
	text-align: center;
	color: white;
	background: rgba(50, 50, 50, 0.6);
	border: 1px white solid;
	border-radius: 5px;
}

.modul-gallery-overview-card:hover{
	cursor:pointer;
}

.modul-gallery-overview-card:hover .modul-gallery-overview-card-name {
	padding: 40px;
	max-width: 70%;
	font-size: 1.5em;
	color: white;
	background: rgba(50, 50, 50, 0.7);
	border: 2px white solid;
}

#gallery{
	min-width:none !important;
	max-width:none !important;
	width:70% !important;
}

.modul-gallery-container {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	
	padding:10px;
}