/* Formate für die Einstiegseite "Filemaker" */

/* Als Erstes ein Browser-Reset, damit man keine bösen Überraschungen erlebt... */
@charset "utf-8";

* {
	margin: 0px;
	padding: 0px;
}

html {
	font-size: 0;
}

body {
	font-family: Arial, sans-serif;
	font-size: 14px;
	background-color: #8c9095;

	/* Der Scrollbalken wird immer angezeigt, damit das "Springen" der Seite,
	falls der Inhalt länger wird, unterbunden wird. */
	overflow-y: scroll;
	min-height: 100%;
	position: absolute;
	width: 100%;
	display: flex;
	flex-direction: column;
}

#wrapper {
	width: 960px;
	margin: 30px auto;
	background-color: white;
	flex: auto;
	display: block;
	flex-direction: column;
}

header {
	background-color: #551c91;
	height: 200px;
}

#headertext_H1 {
	position: absolute;
	line-height: 60px;
	font-size: 60px;
	color: white;
	padding-left: 30px
}

#headertext {
	position: absolute;
	line-height: 60px;
	font-size: 30px;
	color: white;
	padding-left: 30px;
	margin-top: 35px;
}

#designecke {
	position: relative;
	left: 905px;
}

#content {
	background-color: #ffffff;
	min-height: 350px;
	margin-left: 20px;
	margin-right: 20px;
	line-height: 150%;
	flex-grow: 1;
}

p {
	padding: 30px;
	padding-top: 0px;
}

.warnung {
	color: red;
	font-weight: bold;
	font-size: 24px;
}

.zentrierterText {
	text-align: center;
}

ul {
	/*width: 840px; /*für 4 Kacheln --> mehr geht dann beim bisherigen Design nicht*/
	width: 630px;
	/*für 3 Kacheln*/
	/*width: 420px;*/
	/*für 2 Kacheln*/
	margin: 0 auto;
}

ul li {
	margin-left: 5px;
	margin-right: 5px;
	display: inline-block;
	width: 180px;
	height: 200px;
	text-align: left;
}

ol {
	list-style-type: circle;
	width: 870px;
	padding-left: 60px;
	margin-right: 30px;
}

.liGrau {
	background-color: 8c9095;
	text-align: left;
	padding-top: 0px;
	padding-left: 10px;
	padding-right: 10px;
	float: left;
	/*--> damit zwischen den li's keine Abstände entstehen*/
	transition: background-color 0.5s ease;
	background-color: #8c9095;
}

.liGrau:hover {
	background-color: #d48327;
}

#link {
	text-decoration: none;
	color: black;
	margin: 0px;
	display: block;
	/*width: 100%;
	height: 100%;*/
}

#dev {
	text-decoration: none;
	color: black;
	margin: 0px;
}

footer {
	text-align: center;
	padding: 10px;
}

.footer-links {
	color: #551c91;
	text-decoration: none;
	font-weight: bold;
}

.iframe-container {
	transform: scale(0.75);
	transform-origin: top center;
	width: 100%;
	overflow: hidden;
}

.iframe-container iframe {
	width: 100%;
	height: 1800px;
	border: none;
}
