.animiertesBild {
	flex: 1;
	margin: 5px;
	width: 50%;
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */	
}

.bildContainer {
    margin-left: -2%;
    margin-right: -2%;
    display: flex;
    align-items: center; /* Zentriert vertikal */
    height: 150px; /* Macht den Container 5 mal so hoch wie das Bild, abhängig von der Höhe des Bildes */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8961D), color-stop(100%,#F36E21));
}

.bildContainerGrau {
    margin-left: -2%;
    margin-right: -2%;
    display: flex;
    align-items: center; /* Zentriert vertikal */
    height: 150px; /* Macht den Container 5 mal so hoch wie das Bild, abhängig von der Höhe des Bildes */
    background: -webkit-gradient(linear, left bottom, left top, color-stop(100%,#EEEEEE), color-stop(50%,#CCCCCC));
}

.zeilenTrenner {    
    display: flex;
    align-items: center; /* Zentriert vertikal */
    height: 10px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8961D), color-stop(100%,#F36E21));
}

.zeilenTrennerGrau {    
    display: flex;
    align-items: center; /* Zentriert vertikal */
    height: 10px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(100%,#EEEEEE), color-stop(50%,#CCCCCC));
}

@keyframes einfliegen {
    from {
        left: -100%; /* Start außerhalb des Bildschirms */
    }
    to {
        left: 50%; /* Endposition: Mitte des Bildschirms */
        transform: translateX(-50%); /* Zentriert das Bild auf der Endposition */
    }
}

.link-image img {
    border: 2px solid transparent; /* Initial transparent, damit die Größe des Bildes konstant bleibt */
}

.link-image:hover img {
    border: 2px solid #F36E21; /* Gelber Rand beim Hover */
}

.link-button, .link-button:link, .link-button:visited, .link-button:hover, .link-button:active {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to bottom, #999999 0%, #666666 100%);
    color: white; /* Stellt sicher, dass der Text in der gewünschten Farbe erscheint */
    text-decoration: none; /* Entfernt die Unterstreichung */
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: 2px solid #666666; /* Initial transparent, damit die Größe des Bildes konstant bleibt */
}

.link-button img {
    vertical-align: middle; /* Zentriert das Bild vertikal in Bezug auf den Text */
}

.link-button:hover {
	border: 2px solid #F36E21; /* Gelber Rand beim Hover */
	background: linear-gradient(to bottom, #999999 0%, #666666 100%);
}

.link-container {
    text-align: center; /* Zentriert die Inhalte innerhalb des Containers */
    font-size: 0; /* Entfernt den Zwischenraum zwischen Inline-Block-Elementen */
}

.link-2row-column {
    display: inline-block;
    width: 50%; /* Teilt den übergeordneten Container in zwei Spalten */
    text-align: center; /* Zentriert den Button innerhalb der Spalte */
    font-size: 16px; /* Setzt die Schriftgröße zurück, falls zuvor auf 0 gesetzt */
}

.startpage-container {
	padding-top: 20px;
    width: 100%;
    margin: 0 auto;
}

.startpage-row {
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.startpage-row.reverse {
    flex-direction: row-reverse;
}

.startpage-column {
	flex: 1;
	width: 50%;
	display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
}

.startpage-image, .startpage-image:link {
	flex: 1;
	margin: 5px;
	width: 50%;
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */	
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EDEDED), color-stop(100%,#AAAAAA));
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8961D), color-stop(100%,#F36E21));*/
}

footer a.impressum-link {	
	
    font-size: 12px;
	padding: 4px 8px;
}

footer a.impressum-link:link,
footer a.impressum-link:visited {
	font-weight: 600;
	color: #000;
}

footer a.impressum-link:hover,
footer a.impressum-link:focus {	
	color: orange;
}

