/* Grundlegendes Styling für den gesamten Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: url('../bilder/hintergrund.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styling */
header {
    background-color: #8C897E;
    color: #ce1141;
    padding: 20px;
    text-align: center;
}

/* Navigation Styling */
nav {
    background-color: #2E1A47;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style-type: none; /* Entfernt die Standard-Aufzählungspunkte */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline; /* Elemente in einer Zeile anzeigen */
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none; /* Unterstriche entfernen */
    font-weight: bold;
}

nav ul li a:hover {
    color: #FFEF00; /* Farbe beim Überfahren ändern */
}

/* Hauptinhalt Styling */
main {
    flex: 2; /* Hauptinhalt nimmt mehr Platz ein */
    background-color: rgba(136, 139, 141, 0.8);
    padding: 20px;
    border: 1px solid #ddd;
    overflow-y: auto; /* Scrollbalken hinzufügen */
	padding-bottom: 50px;
}

/* Footer Styling */
footer {
    background-color: #2E1A47;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px; /* Höhe des Footers */
}

.my-button {
    color: blue; /* Ändert die Schriftfarbe zu Blau */
}