@font-face {
    font-family: 'Poppins';
    src: url(font/Poppins-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: 'Poppins';
    src: url(font/Poppins-Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-SemiBold.ttf');
    font-weight: 600;
}
/* Farben und Variablen */
:root {
    --primary-color: #ffffff;
    --accent-color: #606060;
    --hover-color: #ffffff;
}
@keyframes glideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Globales Styling */
body {
    background-color: #000000;
    color: #FFF;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
* { margin: 0 auto; }

::-webkit-scrollbar {
    display: none;
}
  
::selection {
background-color: #6464642d; /* Grau als Hintergrundfarbe */
}
/* Stelle sicher, dass die Elemente standardmÃ¤ÃŸig unsichtbar sind */
/* Standard-Stile fÃ¼r die Container, die animiert werden */
/* Standard-Stile fÃ¼r alle Elemente, bevor sie sichtbar werden */
/* Standard-Stile fÃ¼r alle Elemente, bevor sie sichtbar werden */
/* Standard-Stile fÃ¼r alle Elemente, bevor sie sichtbar werden */
/* Standard-Stile fÃ¼r alle Elemente, bevor sie sichtbar werden */
.work-process-rectangle, .new-rectangle, .feedback-box, .rectangle, 
.work-process-rectangle-two, .work-process-rectangle-four, .work-process-rectangle-three,
.larger-text, .larger-text-two, .larger-text-three, .larger-text-four,
.faq-item, .view-all-button {
    opacity: 0;
    transform: translateY(50px); /* Alle Elemente leicht nach unten verschoben */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Animation langsamer machen */
}

/* Reveal-Klasse, die nach Sichtbarkeit hinzugefÃ¼gt wird */
.work-process-rectangle.reveal, .new-rectangle.reveal, .feedback-box.reveal, .rectangle.reveal, 
.work-process-rectangle-two.reveal, .work-process-rectangle-four.reveal, .work-process-rectangle-three.reveal,
.larger-text.reveal, .larger-text-two.reveal, .larger-text-three.reveal, .larger-text-four.reveal,
.faq-item.reveal, .view-all-button.reveal {
    opacity: 1;
    transform: translateY(0); /* Elemente werden an ihre normale Position verschoben */
}






/* Header Container */
.header-container {
    background-color: #58565f15;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin: 40px auto 0;
    transition: all 0.3s ease;
}

/* Header-Inhalt */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    background-color: transparent;
    padding: 0 20px;
    animation: glideInFromBottom 1s ease forwards;
}

/* Header-Titel */
.header-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    flex-grow: 1;
    text-align: left;
    margin-left: 25px;
    cursor: pointer;
}
.main-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgb(233, 233, 233);
    font-size: 50px;
    text-align: center;
    margin: 330px auto;
    line-height: 1.5;
    position: relative;
    user-select: none;
    
}

/* Responsive Design Adjustments */
@media (max-width: 615px) {
    .main-text {
        font-size: 36px;
        line-height: 7.1vh;
        margin: 300px auto;
        user-select: none;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fade-out-Animation */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Ausgangszustand */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Fade-in */
body.fade-in {
    opacity: 1;
}

/* Fade-out */
body.fade-out {
    opacity: 0;
}


/* Logo */
.logo {
    width: 22px;
    height: auto;
    user-select: none; /* Verhindert die Textauswahl */
    z-index: 1001;
    cursor: pointer;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    user-select: none; /* Verhindert die Textauswahl */
}

.nav a {
    color: #f8f8f8;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 28px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
}


/* Linie-Effekt unter dem Link */
.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFF; /* WeiÃŸe Farbe der Linie */
    transition: width 0.3s ease-in-out;
    transform: translateX(-50%);
}

/* Hover-Effekt: Linie breitet sich von der Mitte aus nach links und rechts aus */
.nav a:hover::after {
    width: 60%; /* Linie breitet sich Ã¼ber die gesamte Breite aus */
}

/* Icons (menu button) for mobile */
.icons {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #FFF;
    position: relative;
    z-index: 1001;
}

/* Responsive Design for Mobile */
@media (max-width: 616px) {
    .header-container {
        padding: 15px;
        width: 100%;
        max-width: 350px;
        margin: 30px auto;
        border-radius: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    header {
        justify-content: space-between;
    }

    .header-title {
        margin-left: -50px;
        text-align: center;
        flex-grow: 1;
        z-index: 1001;
    }

    /* Show menu icon and hide nav on mobile */
    .icons {
        display: block;
    }

    /* Hide nav by default on mobile */
    /* Mobile MenÃ¼ - initial verstecken */
.nav {
    visibility: hidden;
    opacity: 0;
    position: absolute; /* Fixieren, damit Blur besser sichtbar wird */
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    background-color: rgb(3, 3, 3); /* Halbtransparent fÃ¼r den Hintergrund */
    z-index: 1000; /* Sicherstellen, dass der Hintergrund Ã¼ber anderen Inhalten liegt */

}

/* Klasse zur Anzeige des MenÃ¼s */
.nav.mobile-shown {
    visibility: visible;
    opacity: 1;
}

/* MenÃ¼-Link-Design fÃ¼r mobile Ansicht */
.nav a {
    font-size: 24px;
    color: #dadada;
    margin: 10px 0;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
}

/* Effekt beim Hover Ã¼ber Links */
.nav a:hover {
    color: #ffffff;
}

/* Icon im Header sichtbar in der mobilen Ansicht */
@media (max-width: 616px) {
    .icons {
        display: block;
    }
}
}

        * {
            box-sizing: border-box;
        }

        * {
            margin: 0;
        }

        .wrapper {
            width: 80%;
            max-width: 1506px;
            margin-inline: auto;
            position: relative;
            height: 150px; /* Adjusted height to fit the logos */
            margin-top: 10rem;
            overflow: hidden;
            mask-image: linear-gradient(
                to right,
                rgba(0, 0, 0, 0),
                rgb(0, 0, 0) 20%,
                rgba(0, 0, 0, 1) 80%,
                rgba(0, 0, 0, 0)
            );
        }

        @keyframes scrollLeft {
            to {
                left: -200px;
            }
        }

        .item {
            width: 40px; /* Adjusted the width */
            height: 80px; /* Adjusted the height */
            background-size: contain; /* Ensures that the logo scales without stretching */
            background-repeat: no-repeat; /* Prevents the image from repeating */
            background-position: center; /* Ensures the image is centered */
            border-radius: 6px;
            position: absolute;
            background-color: #12161800;
            left: max(calc(150px * 8), 100%);
            animation-name: scrollLeft;
            animation-duration: 30s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            opacity: 0.3; /* Sehr niedrige OpazitÃ¤t fÃ¼r die Bilder */
        }
        /* CSS fÃ¼r Hover-FarbÃ¤nderung */
/* Hover-Effekt mit Farbe #a3f361 */
/* Hover-Effekt mit der Farbe #A3F361 */
/* Standard-Stil fÃ¼r die Logos */
.item {
    opacity: 0.3; /* Anfangs niedrigere Sichtbarkeit */
    transition: filter 0.5s ease, opacity 0.5s ease; /* Ãœbergang fÃ¼r sanftes Ein- und Ausblenden */
}

/* Hover-Effekt mit der Farbe #A3F361 und hÃ¶herer Deckkraft */
.item:hover {
    opacity: 1; /* Volle Sichtbarkeit beim Hover */
}
        .item1 {
            background-image: url('/images/stockx.png');
            animation-delay: calc(30s / 8 * (8 - 1) * -1);
        }

        .item2 {
            background-image: url('/images/nike.png');
            animation-delay: calc(30s / 8 * (8 - 2) * -1);
        }

        .item3 {
            background-image: url('/images/rl.png');
            animation-delay: calc(30s / 8 * (8 - 3) * -1);
        }

        .item4 {
            background-image: url('/images/farfetchtwo.png');
            animation-delay: calc(30s / 8 * (8 - 4) * -1);
        }

        .item5 {
            background-image: url('/images/apple.png');
            animation-delay: calc(30s / 8 * (8 - 5) * -1);
        }

        .item6 {
            background-image: url('/images/monclizzy.png');
            animation-delay: calc(30s / 8 * (8 - 6) * -1);
        }

        .item7 {
            background-image: url('/images/bape.png');
            animation-delay: calc(30s / 8 * (8 - 7) * -1);
        }

        .item8 {
            background-image: url('/images/canadagoose.png');
            animation-delay: calc(30s / 8 * (8 - 8) * -1);
        }
        .item9 {
            background-image: url('/images/corteiz.png');
            animation-delay: calc(30s / 8 * (8 - 9) * -1);
        }      
                .item10 {
            background-image: url('/images/spider.png');
            animation-delay: calc(30s / 8 * (8 - 10) * -1);
        }     
        
        .main-text {
            font-family: 'Poppins', sans-serif;
            font-size: 50px;
            text-align: center;
            margin: 300px auto 20px;
        }

        .caption-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #7F7F7F;
            font-size: 17px;
            text-align: center;
            margin: 0 auto 50px;
            line-height: 1.6;
            max-width: 80%;
            user-select: none;
        }
.work-process-container {
    text-align: center;
    margin-top: 120px;
}

.work-process-rectangle {
    display: inline-block;
    background-color: #0a0c0e;
    width: 210px;         /* Breite auf 220px setzen */
    color: #FFF;
    height: 50px;         /* HÃ¶he auf 50px setzen */
    font-size: 16px;      
    font-weight: 100;
    line-height: 50px;    /* ZeilenhÃ¶he, um den Text vertikal zu zentrieren */
    border-radius: 50px;
    border: 1px solid #222;  /* Rand mit 2px Dicke und Farbe #333 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;   /* Text horizontal zentrieren */
    user-select: none;
}

/* Stil fÃ¼r den grÃ¶ÃŸeren Text unter dem Rechteck */
.larger-text {
    font-size: 27px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 2%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text {
        font-size: 25px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.new-rectangle-container {
    display: flex;  
    justify-content: center;
    gap: 20px;  
    text-align: center;
    margin-top: 50px;
    flex-wrap: wrap; 
}

.new-rectangle {
    display: inline-block;
    background-color: #0B0D0E;
    width: 390px;
    height: 290px;
    line-height: 60px;
    padding-top: 130px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    color: #DFDFDF;
    user-select: none;
}

@media (max-width: 400px) {
    .new-rectangle {
        width: 355px;
        height: 280px;
    }
}

.rectangle-title {
    font-size: 21px;
    font-weight: normal;
    color: #DFDFDF;
    padding-top: 10px;
    margin-bottom: 15px;
}
@media (max-width: 615px) {
    .rectangle-title {
        font-size: 20px;
        line-height: 1.5;
        max-width: 100%;
    }
}

.rectangle-subtext {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7F7F7F;
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -15px;
    line-height: 1.4;
}
@media (max-width: 615px) {
    .rectangle-subtext {
        font-size: 15px;
        margin-left: 30px;
    }
}
.icon-circle {
    position: absolute; /* Kann durch 'fixed' ersetzt werden, falls es auf dem gesamten Bildschirm zentriert bleiben soll */
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%); /* Verschiebt das Element um die Hï¿½lfte seiner Breite und Hï¿½he */
    width: 65px;
    height: 65px;
    background-color: #ffffff2f;
    border-radius: 50%;
    opacity: 1;
    border: 0.1px solid #6A6A6A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 19;
}

.icon-circle i {
    color: #FFF;
    font-size: 30px;
    z-index: 20;
}


/* Mobile-first Anpassungen */
@media (max-width: 768px) {
    .new-rectangle-container {
        flex-direction: column; 
        align-items: center; 
    }
}
.work-process-rectangle-two {
    display: inline-block;
    background-color: #0B0D0E;
    width: 150px;
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}
.larger-text-two {
    font-size: 25px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 1%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text-two {
        font-size: 23px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.feedback-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DFDFDF;
}

.feedback-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.feedback-box {
    background-color: #0B0D0E;
    width: 390px;
    height: 250px;
    padding-top: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #DFDFDF;
    position: relative;
}
.stars {
    color: #FFF;
    margin-bottom: 15px;
    font-size: 18px;
    user-select: none;
}

.feedback-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #DFDFDF;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.4;
    margin-bottom: 10px;
    user-select: none;
}
.feedback-author {
    font-size: 15px;
    font-weight: 500;
    color: #7F7F7F; 
    margin-top: 5px;
    user-select: none;
}

@media (max-width: 615px) {
    .feedback-box {
        width: 350px;
        height: 230px;
    }
    .feedback-text {
        font-size: 15px;
    }
    .feedback-author {
        font-size: 16px;
    }
}
.work-container {
    text-align: center;
    margin-top: 85px;
}
.work-process-rectangle-three {
    display: inline-block;
    background-color: #0B0D0E;
    width: 120px; 
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}
.larger-text-three {
    font-size: 23px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 1%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text-three {
        font-size: 23px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.work-process-rectangle-four {
    display: inline-block;
    background-color: #0B0D0E;
    width: 200px; 
    color: #FFF;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    border-radius: 50px;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}
.larger-text-four {
    font-size: 23px;
    font-weight: 400;
    color: #DADADA;
    margin-top: 1%;
    user-select: none;
}
@media (max-width: 400px) {
    .larger-text-four {
        font-size: 22px;
        font-weight: 400;
        color: #DADADA;
        margin-top: 3%;
        user-select: none;
    }
}
.faq-section {
    padding: 55px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DFDFDF;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-item {
    background-color: #0b0d0e;
    width: 700px;
    padding-top: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #DFDFDF;
    position: relative;
    overflow: hidden;
    height: 90px;
    min-height: 90px; /* Added minimum height */
    transition: height 0.4s ease, transform 0.4s ease;
}

@media (max-width: 400px) {
    .faq-item {
        background-color: #0B0D0E;
        width: 350px;
        padding-top: 20px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid #222;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: #DFDFDF;
        position: relative;
        overflow: hidden;
        height: 90px;
        min-height: 90px; /* Ensure it doesn't collapse */
        transition: height 0.4s ease, transform 0.4s ease;
    }
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    margin: 10px 30px 0;
    user-select: none;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 16px;
    margin-top: 15px;
    padding: 0 30px;
    color: #888;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    text-align: left;
    transform: translateY(-20px);
    user-select: none;
    transition: all 0.2s ease-out;
}

/* When the faq-item is open */
.faq-item.open {
    height: 150px;
}

.faq-answer.open {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Plus Icon */
.faq-toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-toggle-btn::before,
.faq-toggle-btn::after {
    content: '';
    position: absolute;
    background-color: #DFDFDF;
    transition: transform 0.3s ease;
}

.faq-toggle-btn::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 0;
    background-color: #DFDFDF;
    transform: translateY(-50%);
}

.faq-toggle-btn::after {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-toggle-btn.open {
    transform: rotate(45deg);
}

.faq-toggle-btn.open::before,
.faq-toggle-btn.open::after {
    background-color: #FFF; 
}

/* Ensure better responsive handling on mobile */
@media (max-width: 768px) {
    .faq-item {
        width: 95%;
        padding: 15px;
    }

    .faq-answer {
        font-size: 14px; /* Reduce font size on smaller screens */
    }

    .faq-question {
        font-size: 16px;
    }
    .faq-toggle-btn {
    background: none;
    border: none;
    font-size: 2px;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}
}
/* Container fÃ¼r das Rechteck und die Produktinformationen */
/* Allgemeine Einstellungen fÃ¼r die Produkt-Reihe */
/* Allgemeine Einstellungen fÃ¼r die Produkt-Reihe */
.product-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 15px;
}

/* Rechteck-Container Einstellungen */
.rectangle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    gap: 10px; /* Abstand zwischen Rechteck und Produktinfos */
    padding-top: 5vh;
    margin-bottom: 40px;
}

/* Stil der Rechtecke */
.rectangle {
    width: 250px;
    height: 230px;
    border-radius: 40px;
    background-color: #0B0D0E;
    border: 1px solid #1E1E1E;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    cursor: pointer;
        opacity: 1;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

/* Sichtbare Rechtecke mit Animation */
.rectangle.visible {
    opacity: 1;
}

/* Bild innerhalb des Rechtecks */
.rectangle-image {
    max-width: 80%;
    max-height: 40%;
    object-fit: contain;
    user-select: none;
}

/* Produktinfo unterhalb des Rechtecks */
.product-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 250px;
    padding: 0 10px;
    margin-top: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}

.product-price {
    font-size: 18px;
    font-weight: 500;
    color: #888;
}

/* Responsive Anpassungen fÃ¼r Tablets und MobilgerÃ¤te */
/* Responsive Anpassungen fÃ¼r Tablets und MobilgerÃ¤te */
@media (max-width: 768px) {
    .product-row {
        flex-direction: column;
        align-items: center;
        gap: 5px; /* Weniger Abstand zwischen den Produkten */
        margin-top: 5px; /* Reduzierter Abstand nach oben */
    }
    .rectangle-container {
        gap: 3px; /* Weniger Abstand zwischen Rechteck und Produktinfos */
        margin-bottom: -10px; /* Noch weniger Abstand nach unten */
    }
}
/* Styling fÃ¼r den Button unter den Produkten */
/* Styling fÃ¼r den Button unter den Produkten */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-button {
    display: inline-block;
    color: white; /* Textfarbe Standard */
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid transparent; /* Transparenter Rand, bis zum Hover */
    transition: all 0.3s ease; /* Ãœbergang fÃ¼r alle Effekte */
}

/* Hover-Effekt */
.view-all-button:hover {
    border: 1px solid #222222; /* Rand beim Hover */
}
.gif-overlay {
    position: fixed; /* Das Bild bleibt auch beim Scrollen sichtbar */
    top: 50%;         /* Positioniert das Bild vertikal in der Mitte */
    left: 0;          /* Startet auf der linken Seite des Bildschirms */
    z-index: 9999;    /* Stellt sicher, dass das GIF ï¿½ber allen anderen Elementen liegt */
    pointer-events: none; /* Verhindert, dass das GIF mit anderen Elementen interagiert */
    animation: moveAcross 8s linear forwards; /* Animation lï¿½uft nur einmal und bleibt am Ende in der Endposition */
}

.gif-overlay img {
    width: 150px;     /* Setzt die Breite des GIFs */
    height: auto;     /* Stellt sicher, dass das Seitenverhï¿½ltnis beibehalten wird */
}
.video-select{
    background-color: #0a061627;
    border: 1px solid #1e0c49; 
    color: #faf8ff;
}

.video-select option {
    background-color: black; /* Background color of options */
    color: white; /* Text color */
    border: 1px solid #1e0c49; 
}