body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;         
}

.slider-container {
    width: 50%; /* Maximaal 50% van de breedte van het scherm */
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.2s ease-in-out;
}

.slider img {
    width: 100%; /* Past de afbeelding aan de container aan */
    height: auto;

}

.slider-container.left-hover {
    cursor: w-resize; /* Pijl naar links */
}

.slider-container.right-hover {
    cursor: e-resize; /* Pijl naar rechts */
}

.logo {
    position: fixed;
    left: 20px;
    top: 20px;
    width: 250px;
    z-index: 3;
}
.rechtsonder{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 185px;
    font-size: 12px;
    text-align: right;
    z-index: 3;

}
.rechtsboven{
    position: fixed;
    right: 20px;
    top: 20px;
    width: 185px;
    font-size: 12px;
    text-align: right;
    z-index: 3;

}
.links {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 185px;
    font-size: 12px;
    text-align: left;
    z-index: 3;


}