/* Example CSS file */ 
/* Container für die Galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Abstand zwischen den Bildern */
}

/* Grundlegende Styles für die Bilder */
.gallery img {
    width: 100%;
    max-width: 200px; /* Breite der Thumbnails */
    transition: transform 0.3s ease; /* Sanfter Übergang bei Hover */
    cursor: pointer; /* Zeigt an, dass das Bild anklickbar ist */
}

/* Vergrößerungseffekt bei Hover */
.gallery img:hover {
    transform: scale(1.5); /* Vergrößert das Bild auf 150% */
    z-index: 10; /* Stellt sicher, dass das Bild über anderen Inhalten liegt */
    position: relative; /* Position relativ, damit z-index funktioniert */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0; /* Helles Grau */
    font-family: Arial, sans-serif;
}

.content {
    background-color: #d3b8ae; /* Braun */
    color: #4b3b47; /* Dunklerer Braunton */
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    color: #6a1b9a; /* Violett Akzent */
    margin-bottom: 10px;
}

p {
    margin: 10px 0;
}

.schedule, .contact {
    margin: 20px 0;
}

a {
    color: #6a1b9a; /* Violett Akzent */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
