/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    backround-color: #000;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    backround-color: #000;
}

/* Header (Oberer Bereich) */
.header {
    background-color: #000;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-name {
    font-size: 44px;
    font-weight: bold;
}

.logo-placeholder {
    width: 150px; /* Größe des Logos anpassen */
    height: 100px;
    background-color: #000; /* Grauer Platzhalter */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

/* Navigationsleiste (Mittlerer Bereich) */
.navbar {
    background-color: #f00;
    width: 100%;
    padding: 10px 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 26px;
    padding: 10px 15px;
}

.navbar a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Hauptinhalt (Unterer Bereich) */
.content {
    padding: 20px;
    min-height: 400px; /* Platzhalter für Inhalt */
    background-color: #ffd700;
    text-align: center;
}

/* Styling für die Laufschrift */
marquee {
    margin-top: 20px;
    padding: 10px;
    background-color: #ffd700;
    color: black;
    font-size: 26px;
    border-radius: 5px;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #ffd700;
    color: black;
    padding: 10px;
    margin-top: 30px;
    border-radius: 5px;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
