body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.card-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    justify-content: center; /* Zentrierung der Karten */
    transition: transform 0.5s ease-in-out; /* Swipe-Animation hinzugefügt */
}

.card {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out;
}

.card p {
    text-align: center;
    font-size: 1.5em;
}

.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.arrow {
    font-size: 2em;
    color: #333;
}

.left {
    margin-left: 10px;
}

.right {
    margin-right: 10px;
}

/* Media Queries für unterschiedliche Bildschirmgrößen */
@media only screen and (min-width: 768px) {
    .card {
        flex: 0 0 50%;
    }
}

@media only screen and (min-width: 1024px) {
    .card {
        flex: 0 0 33.33%;
    }
}

@media only screen and (max-width: 767px) {
    .card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 100vh; /* Höhe auf 100% setzen */
    }

    .nav-arrows {
        display: none; /* Versteckt die Pfeile auf mobilen Geräten */
    }
}
.welcome-container {
    height: 100vh;
}

.welcome-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.welcome-card h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.welcome-card p {
    font-size: 1.2em;
    color: #888;
}
