.projectSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(11, 146, 190);
    height: auto;
    padding-top: 100px;
    /* Reduziere die Höhe */

}

.projectSection h1 {
    font-size: 3vw;
    margin-bottom: 1rem;
    color: rgb(109, 108, 108);
}

.projectSection p {
    text-align: center;
    font-size: 1.5vw;
    text-decoration: none;
    color: rgb(116, 96, 169);

}

button {
    background-color: #224cf5;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #275ab9;
    transform: scale(1.05);
}

i {
    font-size: 2rem;
    color: #224cf5;
    margin-right: 10px;
}

.database p {
    font-size: 2rem;
}

.database {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;

    margin-bottom: 60px;
    /* Abstand nach oben und zentrieren */
    width: 80%;
    /* Breite des Containers */
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    /* Heller, transparenter Hintergrund */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Schatten für Tiefe */
    border-radius: 10px;
    /* Abgerundete Ecken */
    border: 1px solid #eaeaea;
    /* Dezenter Rahmen */
}

.database h1 {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(109, 108, 108);
    /* Passend zu deiner Farbpalette */
    margin-bottom: 1rem;
    text-align: center;
}


.database ul {
    list-style: none;
    /* Entfernt Standard-Bullets */
    padding: 0;
}

.database ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.database ul li strong {
    color: #0b92be;
    font-size: 1.5rem;
}

.database ul li::before {
    content: "✔";
    color: #0b92be;
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
    margin-top: 5px;
}

.database ul li #Link {
    text-decoration: none;
    color: #0b92be;
}

.database a {
    text-decoration: none;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background-color: #0b92be;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #097ca4;
}

.slideshow-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow {

    width: 70vw;
    height: 70vh;
    margin-bottom: 100px;
    position: relative;

}

.slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: wrap;
    opacity: 0;
    transition: opacity 2s;

}

.slide-picture {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.slide-description {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 70%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    font-family: sans-serif;
    padding: 0 15% 0 15%;
    padding-top: 15px;

}

.slide-headline {
    font-size: 2em;
    margin: 10px 0;
}

.slide-explanation {
    font-size: 1.4em;
    margin: 0;
}

.arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    color: rgba(94, 94, 94, 0.5);
    user-select: none;
    cursor: pointer;
}

.arrow:hover {
    color: rgb(128, 127, 127);
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.indicatorlist {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    font-size: 35px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}


.indicator {
    padding: 0 10px;
    user-select: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 2s;
}

.active {
    opacity: 1;
}

.link-section {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-section:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.database:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/*Responsive Design*/

@media (max-width:952px) {

    .projectSection h1 {
        font-size: 3.5vw;
    }

    .projectSection p {
        font-size: 1.8vw;
    }

    .projectSection {
        padding-top: 2rem;
        transform: translateY(-1rem);
        /* Weniger Verschiebung auf kleinen Geräten */
    }

    .database {
        width: 90%;
        /* Reduziere die Breite auf kleinen Bildschirmen */
        padding: 1.5rem;
        /* Weniger Padding */
    }

    .database h1 {
        font-size: 1.8rem;
        /* Kleinere Schriftgröße für Mobilgeräte */
    }

}