
        #frontpage{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
        }


        .slideshow-container {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slides-wrapper {
            display: flex;
            position: absolute;
            top: 0;
            left: 0;
            width: 500%; /* Increased to 5x to allow true continuous sliding */
            height: 100%;
            transition: transform 1s ease-in-out;
        }

        .slide {
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            flex-shrink: 0;
        }

        .navigation {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .nav-btn {
            background-color: rgba(255,255,255,0.7);
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            border-radius: 5px;
        }

        .nav-btn:hover {
            background-color: rgba(255,255,255,0.9);
        }