html, body {
    height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	margin: 0px;
}

.header {
	height: 90px;
	background: linear-gradient(to bottom, #000000, #7131a5);
	text-align: center;
    padding-top: 1px;
	font-variant: petite-caps;
	color: whitesmoke ;
}

.content {
	display: flex;
	flex-direction: row;
	flex: 1 0 auto;
	text-align: center;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	background-color: azure;
}

.seite_ueberschrift {
	width: 100%;
}

.footer {
    height: fit-content;
	background: linear-gradient(to bottom, #7131a5, #000000);
    text-align: center;
    padding: 15px;
	flex-shrink: 0;
	color: whitesmoke;
	text-decoration: none;
}

.footer a {
	text-decoration: none;
	color: whitesmoke;
}

.container {
	display: flex;
	flex-direction: column;
	max-width: fit-content;
	margin: 10px;
	border-radius: 8px;
}

.container_with_link {
	display: flex;
	flex-direction: column;
	max-width: fit-content;
    min-width: 250px;
	margin: 10px;
	border-radius: 8px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	background: white;
}

.container_with_link:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transform: scale(1.1, 1.1);
	background: white;
}

.container_ueberschrift {
	display: flex;
	background: linear-gradient(to bottom, #f3f3f3, #7131a5 50%, #512277);
	color: whitesmoke;
	border: 1px solid #7131a5;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	align-items: center;
	justify-content: center;
	padding-left: 5px;
	padding-right: 5px;
	height: 30px;
}

.container_inhalt {
	display: flex;
	color: black;
	border: 1px solid black;
	border-top: 0px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 2px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 90px;
}

.container_link {
	text-decoration: none;
}

.index_image {
	height: 70px;
}
