body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Hintergrund ist schwarz */
    color: #dbe637; /* Textfarbe bleibt #FFA500 */
}

header {
    background-color: #F2F231; /* Header hat wieder den gelben Balken */
    color: #000; /* Text im Header bleibt schwarz für besseren Kontrast */
    padding: 10px 20px;
    text-align: center;
}

.logo {
    width: 100px;
    margin: 0 auto;
}

.content {
    padding: 20px;
    text-align: center;
    background-color: #000; /* Hintergrund des Inhaltsbereichs bleibt schwarz */
}

a {
    color: #dbe637; /* Links bleiben in #FFA500 */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #000; /* Footer Hintergrund bleibt schwarz */
    padding: 10px 0;
    text-align: center;
    color: #dbe637; /* Text im Footer bleibt #FFA500 */
}
