/* Grundlegendes Styling für den gesamten Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}
html {
  background: url(../bilder/ab.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Header Styling */
header {
    background-color: #333;
    color: #f3e47c;
    padding: 20px;
    text-align: center;
}

/* Navigation Styling */
nav {
    background-color: #444;
    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: #ADFF2F;
    text-decoration: none; /* Unterstriche entfernen */
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff6600; /* Farbe beim Überfahren ändern */
}

/* Hauptinhalt und Sidebar Layout */
.content {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

/* Hauptinhalt Styling */
main {
    flex: 2; /* Hauptinhalt nimmt mehr Platz ein */
    background-color: 	#c9c9c9;
    padding: 20px;
    border: 1px solid #ddd;
    margin-right: 20px;
}


/* Footer Styling */
footer {
    background-color: #333;
    color: #4f5f92;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}
