/* Allgemeines Styling */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Jura', sans-serif;
    background-color: #F9F7F7;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Hinzugefügt für die Foliennummerierung */
}

.content {
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.slide h1, .slide h2 {
    font-family: 'Just Me Again Down Here', cursive;
    color: #112D4E;
}

.slide h1 {
    font-size: 4rem; /* Erhöht von 3rem auf 4rem */
    margin-bottom: 20px;
}

.slide h2 {
    font-size: 3.5rem; /* Erhöht von 2.5rem auf 3.5rem */
    margin-bottom: 20px;
}

.slide p, .slide ul {
    font-size: 1.5rem; /* Erhöht von 1.2rem auf 1.5rem */
    line-height: 1.5;
    color: #3F72AF;
}

.slide ul {
    list-style-type: none;
    padding: 0;
}

.slide ul li {
    margin-bottom: 15px;
}

/* Unterschiedliche Hintergrundfarben */
.slide:nth-child(odd) {
    background-color: #DBE2EF;
}

.slide:nth-child(even) {
    background-color: #F9F7F7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide h1 {
        font-size: 8rem; /* Erhöht von 2rem auf 4rem */
    }
    .slide h2 {
        font-size: 5rem; /* Erhöht von 1.8rem auf 3rem */
    }
    .slide p, .slide ul {
        font-size: 3rem; /* Erhöht von 1rem auf 1.8rem */
    }
}

/* Stil für die Bildreihe */
.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-container {
    flex: 1 1 45%;
    margin: 10px;
    text-align: center;
}

.image {
    max-width: 100%;
    height: auto;
}

/* Stil für die Palette-Anzeige */
.palette-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.palette-text {
    flex: 1 1 300px;
    margin-right: 20px;
}

.palette-image {
    flex: 1 1 300px;
}

.palette-image img {
    max-width: 100%;
    height: auto;
}

/* Stil für die Foliennummerierung */
.slide-number {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 1rem;
    color: #555;
}

.logo {
    width: 100px; /* Passe die Breite nach Bedarf an */
    height: auto;
    border-radius: 10px; /* Abgerundete Ecken */
}

.logo-global {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 50px; /* Einheitliche Größe */
    height: auto;
    border-radius: 10px;
    z-index: 1000; /* Über den Slides anzeigen */
}