/*** allgemeine einstellungen ***/
body {
    margin: 0;
    overflow: hidden;
}

/*** slider ***/
.splide {
    width: 100vw;
    height: 100vh;
}

.splide__slide img {
    width: 100%;
    object-fit: contain;
}

.my-slider-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ccc;
    z-index: 1000;
}

.my-slider-progress-bar {
    background: black;
    height: 100%;
    width: 0%;
    transition: width 2s linear; 
}
