/* Allgemeine Styles */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 3rem;
    background-color: black;
    color: white;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Logo Container - Desktop */
.center-symbol {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

.Logo img {
    max-width: 100%;
    height: auto;
}

/* Events List */
.events-list {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%; /*ver
    margin-top: 20px;  /* Verringere die Breite, um Raum zum Zentrieren zu schaffen CCCCCCCC*/
/*    margin: 20px auto; Zentriert den Block horizontal CCCCCCCC*/
    margin: 0 auto; /* Zentriert den Block horizontal CCCCCCCC*/

}

.events-list h2 {
    margin-top: 0;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.event-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.95rem;
    color: white;
}

.event-date {
    font-weight: bold;
    color: #ffcc00;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-details {
    margin-left: 0;
    line-height: 1.2;
}

/* Bottom Symbols */
.bottom-symbols {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    max-width: 1000px;
}

.symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.symbol:hover {
    transform: scale(1.2);
}

.symbol img {
    max-height: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 1.5rem;
    }

    /* Mobile Logo */
    .center-symbol {
        max-width: 300px;
    }

    .Logo img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile Events List */
    .events-list {
        max-width: 100%;
        padding: 15px;
    }

    .events-list h2 {
        font-size: 1.2rem;
    }

    .event-item {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .event-date {
        font-size: 1rem;
    }

    .event-details {
        font-size: 0.8rem;
    }

    .bottom-symbols {
        flex-wrap: wrap;
    }

    .symbol {
        margin: 10px;
    }
}