@import url("https://use.typekit.net/vuj5dhk.css");
        body {
            margin: 0;
            background-color: #0B1E24;
            font-family: Arial, sans-serif;
            overflow-x: hidden; /* Verhindert horizontales Scrollen */
          
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #0a171b;
            position: absolute;
            width: 100%;
            z-index: 10;
            
        }
        .header img {
            height: 50px;
            border-radius: 15px;
            cursor: pointer;
            
            
        }
        .login-button {
            padding: 10px 20px;
            background-color: #0B1E24;
            color: white;
            border-radius: 5px;
            border-color: aliceblue;
            cursor: pointer;
            right: 3%;
            position: absolute;
            font-size: large;
            font-family: "fatfrank";
            transition: 0.8s;
        }

        .login-button:hover {
            color: #68BE7C;
            
        }

        .shop-button {
            padding: 10px 20px;
            background-color: #0B1E24;
            color: white;
            border-radius: 5px;
            border-color: aliceblue;
            cursor: pointer;
            right: 40%;
            position: absolute;
            font-size: large;
            font-family: "fatfrank"
        }


        .header-buttons {
            position: absolute;
            right: 10%;
            display: flex;
            gap: 13px;
            font-family: "fatfrank";
    
}

         .header-buttons button {
            background-color: #0B1E24;
            padding: 10px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-family: "fatfrank";
            color: #68BE7C;
            transition: 0.8s;
            border-color:aliceblue;
            border-style: groove;
            font-size: medium;
}

        .header-buttons button:hover {
            background-color: #68BE7C;
            color: #0A1B20;
}

      
.search-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 5%;
    top: 15%;
    transition: all 0.5s ease;
    border-radius: 50px;
    background-color: #0B1E24;
    padding: 3px;
    border: 2px groove #fcfcfc;
    
}

.search-container:hover { 
    border: 2px groove #68BE7C;
    color:#687CBE
}



.search-input {
    font-family: "fatfrank";
    padding: 10px 20px;
    border: none;
    border-radius: 50px; /* Vollständig rund im zugeklappten Zustand */
    font-size: medium;
    flex: 1;
    background-color: #0A1B20;
    color: #96c2a0;
    border: none;
    outline: none;
}

.search-button {
    display: none; /* Standardmäßig ausgeblendet */
    align-items: center;
    justify-content: center;
    font-family: "fatfrank";
    background-color: #0B1E24;
    padding: 10px 20px;
    border-radius: 0 10px 10px 0; /* Abgerundete Ecken nur rechts */
    cursor: pointer;
    color: #68BE7C;
    transition: all 0.5s ease;
    border: none;
    font-size: medium;
}

.search-button.show {
    display: flex; /* Button wird angezeigt */
    border-radius: 0 50px 50px 0;
}

.search-button:hover {
    background-color: #68BE7C;
    color: #0A1B20;
    border-radius: 0 50px 50px 0;
}

.search-container.expanded .search-input {
    border-radius: 50px 0 0 50px; /* Abgerundete Ecken im erweiterten Zustand */
}


.search-container.expanded .search-button {
    display: flex; /* Button wird im erweiterten Zustand angezeigt */
}




    

        
        .slideshow-container {
            width: 100%;
            height: 100vh;
            position: relative;
            margin: 0 auto;
            overflow: hidden;
        }
        .mySlides {
            display: none;
            height: 100%;
        }
        .mySlides img {
            width: 100%;
            height: 80%;
            object-fit: cover;
            object-position: center top; /* Stellt sicher, dass das Bild oben zentriert ist */
        }
        .dot-container {
            text-align: center;
            padding: 20px;
            position: absolute;
            width: 100%;
            z-index: 10;
            top: 75%;
        }
        .dot {
            height: 15px;
            width: 15px;
            margin: 0 2px;
            background-color: #68BE7C;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
            cursor: pointer;
        }
        .active {
            background-color: #386543;
        }
        .fade {
            animation-name: fade;
            animation-duration: 3s;
        }
        @keyframes fade {
            from {opacity: .4} 
            to {opacity: 1}
        }
        .cactuslabs-text {
            color: #68BE7C;
            font-size: 188px;
            border-color: #0B1E24;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 10;
            white-space: nowrap; /* Verhindert Umbruch des Textes */
            font-family: "fatfrank"
        }
        
.product-section {
    background-color: #0B1E24;
    color: #68BE7C;
    padding: 50px 0;
    text-align: center;
}

.product-section h1 {
    font-size: 72px;
    font-family: "fatfrank";
    margin-bottom: 50px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background-color: #0A1B20;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 21%;
    transition: background-color 2s, width 1s;
    border-color: #5a5a5a;
    border-style: groove;
    background-image: radial-gradient(circle at left, #68be7c7e 0%, #0A1B20 90%);

}

.product-card:hover {
    background-color: #18271c;
    width: 22%;
}

.product-card img {
    width: 100%;
    display: block;
}

.product-info {
    padding: 15px;
    color: #fff;
    font-family: "fatfrank";
}

.product-info h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #687CBE;
}

.product-info p {
    margin: 3px 0;
}

.product-buttons {
    position: absolute;
    bottom: 1px;
    left: 10px;
    display: flex;
    gap: 5px;
    font-family: "fatfrank";
    
}

.product-buttons button {
    background-color: #061114;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: "fatfrank";
    color: #68BE7C;
    transition: background-color 0.3s;
    border-color: #707070;
    border-style: groove;
    font-size: medium;
}

.product-buttons button:hover {
    background-color: #122016;
}
    
/* LOGIN SEITE */

.hidden {
    display: none;
}
.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.login-box {
    background-color: #0A1B20;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #68BE7C;
    width: 300px;
    text-align: center;
    border: 2px groove #68BE7C;
}
.login-box h2 {
    color: #68BE7C;
    margin-bottom: 20px;
    font-family: "fatfrank";
}
.login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    background-color: #122016;
    color: #68BE7C;
    font-size: medium;
    font-family: "fatfrank";
}
.login-box button {
    width: 100%;
    padding: 10px;
    background-color: #68BE7C;
    color: #0A1B20;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: medium;
    font-family: "fatfrank";
    transition: 0.8s;
}
.login-box button:hover {
    background-color: #0A1B20;
    color: #68BE7C;
    border: 2px groove #68BE7C;
}
.login-box a {
    color: #68BE7C;
    text-decoration: none;
    font-size: small;
}
.login-box a:hover {
    text-decoration: underline;
}
/* ERROR 404 SEITE*/

.e404body {
    
    height: 100vh;
    background: url('https://static.vecteezy.com/ti/gratis-vektor/p3/1995303-weltraum-landschaft-mit-grossen-planeten-auf-lila-sternenhimmel-und-stadt-am-horizont-natur-auf-einem-anderen-planeten-illustration-vektor.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    font-family: "fatfrank";
    
}
.container {
   
    text-align: center;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "fatfrank";
    overflow: hidden;
    position: absolute;
    transition: all 0.5s ease;
    top: 34%;
    left: 38%;
    
   
    
    
    
}
.container h1 {
    font-size: 8rem;
    margin: 0;
}
.container p {
    font-size: 2rem;
}
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff562200;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: fatfrank;
    transition: 1s;
    border-color: #0a171b;
    border: 2px groove #68BE7C;
}

.button:hover {
    display: inline-block;
    background-color: #68be7ca6;
    padding: 12px 30px;
    color: #0a171b;
    border: none;
}
.astronaut {
    position: absolute;
    bottom: 42%;
    right: 34%;
    width: 300px;
}