/* Grundlegendes Styling für den gesamten Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
	background-image: url('stadt.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Header Styling */
header {
    background-color: rgba(30,30,30,0.9);
    color: white;
    padding: 5px;
    text-align: center;
}

/* Navigation Styling */
nav {
    background-color: rgba(30,30,30,0.9);
    padding: 10px;
    text-align: center;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	color: white;
	margin-right: 40%;
	margin-left: 40%;
}

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: #00AABB;
    text-decoration: none; /* Unterstriche entfernen */
    font-weight: bold;
}

nav ul li a:hover {
    color: #FF5544; /* 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: white;
	background-color: rgba(255,255,255,0.6);
    padding: 20px;
    border: 1px solid #ddd;
    margin-right: 20px;
}


/* Footer Styling */
footer {
    background-color: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed; /* ursprünglich relative*/
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}
