/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Vollbildhöhe */
    background-color: #f3f3f3; /* Hintergrundfarbe */
}

#eventContainer {
    width: 80%; /* Breite des Containers */
    max-width: 1000px; /* Maximale Breite */
    text-align: center;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Styling für den Titel */
h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

/* Styling für den Text */
p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Styling für das Bild */
img {
    max-width: 100%; /* Sorgt dafür, dass das Bild responsive ist */
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

/* Kleine Anpassungen für kleinere Bildschirme */
@media (max-width: 768px) {
    #eventContainer {
        width: 95%;
    }
}
