#strecken_container {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.strecken_item {
	width: 290px;
	height: 384px;
	border: 0px;
	border-radius: 16px;
	margin-right: 22px;
	margin-bottom: 22px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: white;
	text-decoration: none;
	
	transition: all 0.5s ease;
}
.strecken_item:hover {
	background-size: 110%;
}
.strecken_item_info-container {
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 16px;
	width: 250px;
	
	display: flex;
	flex-direction: row;
}
.strecken_item_title {
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	max-width: 250px;
	font-size: 1.4em;
}

.strecken_button {
	margin-right: 6px;
	height: 1.6em;
	border: 0px;
	border-radius: 8px;
	min-width: 60px;
	display: flex;
	align-items: center; /*vertical align center*/
	justify-content: center;
}
.green_MTB {
	background-color: rgb(115,200,44);
}
.rot_mittel {
	background-color: rgb(241,67,55);
}
.align_space_between {
	justify-content: space-between;
}
.align_start {
	justify-content: flex-start;
}