/*Gilt für jede Seite:*/

/*Navigationsleiste (Tabelle)*/
.ctNavigation{
	border: 0px solid;
	width: 50%;
	position: fixed;
	text-align: center;
	vertical-align: middle;
	margin-left: 25%;
	margin-right: 25%;
}

/*Navigationslink (Wird nur von Startseite und Über mich? genutzt)*/
.cNaviLink{
	margin: auto;
	display: inline-block;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.cNaviLink:hover{
	background-color: darkblue;
}

/*Dropdown Menü von Informationen*/
.cdDPInfo{
	position: relative;
  	display: inline-block;
}
.caDPKInfo{
	margin: auto;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.cdDPIInfo{
	position: relative;
	top: 27px;
	display: none;
  	position: absolute;
  	background-color: #f1f1f1;
  	width: fit-content;
  	box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.5);
}
.cdDPIInfo a{
	color: black;
  	padding: 12px 16px;
  	text-decoration: none;
  	display: block;
}
.cdDPIInfo a:hover{
	background-color: #ddd;
}
.cdDPInfo:hover .cdDPIInfo{
	display: block;
}
.cdDPInfo:hover .caDPKInfo{
	background-color: darkblue;
}

/*Dropdown Menü von Dropdown Menü*/
.cdDropdown{
	position: relative;
  	display: inline-block;
}
.caDropdownKnopf{
	margin: auto;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.cdDropdownInhalt{
	position: relative;
	top: 100%;
	display: none;
  	position: absolute;
  	background-color: #f1f1f1;
  	width: fit-content;
  	box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.5);
}
.cdDropdownInhalt a{
	color: black;
  	padding: 12px 16px;
  	text-decoration: none;
  	display: block;
}
.cdDropdownInhalt a:hover{
	background-color: #ddd;
}
.cdDropdown:hover .cdDropdownInhalt{
	display: block;
}
.cdDropdown:hover .caDropdownKnopf{
	background-color: darkblue;
}

/*Füller, da mit der Titel am Anfang in der goldenen oberen Mitte ist.*/
.cFüller{
	margin-bottom: 200px;
	opacity: 0;
}

/*Titel der Seite*/
.cTitel{
	margin: 0 auto;    /* Zentrierung mitte */
	align-items: center;
	background-color: rgb(134, 207, 253, 0.95);
	position: sticky;
	top: 70px;
	border-radius: 10px;
	font-size: 25pt;
	width: fit-content;
	min-width: 400px;
	z-index: -1;
}

/*Für Standardtext auf einer Seite.*/
.cdTextContainer{
	display: flex;
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
}
.cNormalerText{
	font-size: 20pt;
	background-color: rgb(255, 255, 255, 0.4);
	width: fit-content;
}

/*Die Fußzeile; noch schwarz*/
.cFußzeile{
	margin: 0 auto 0;    /* Zentrierung mitte */
	width: 100%;
	height: 70px;
	background-color: black;
	position: fixed;
	bottom: 0px;
	font-size: 17px;
}
.cFarbverlauf{
	position: relative;
	background: linear-gradient(to right, rgb(0, 0, 255), rgb(0, 255, 0));
	background-clip: text;
	color: transparent;
	top: -10px;
}
#iVersion{
	position: relative;
	top: -25px;
	font-weight: bold;
}

/* Seiten spezifische Styles:*/

/*Hintergrund + alles Mittig*/
.cIndexBody{
	margin: 0 auto auto auto;
	text-align: center;
	background-image: url("hintergrund.jpg");
	background-attachment: fixed;
}

/*404 soll keinen Hintergrund haben*/
.c404Body{
	margin: 0 auto auto auto;
	text-align: center;
	background-color: rgb(65, 110, 161);
}

.cInformationenBody{
	margin: 0 auto auto auto;
	text-align: center;
	background-color: rgb(15, 141, 89);
}