* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* cursor: crosshair; */

}

@font-face {
    font-family: 'uncut_sansbold';
    src: url('fonts/uncutsans-bold-webfont.woff2') format('woff2'),
        url('fonts/uncutsans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'uncut_sansmedium';
    src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
        url('fonts/uncutsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: rgb(245, 245, 245);
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: rgb(255, 141, 48);
}

header {
    /* position: fixed; */
    padding: 0.5vw 1vh;
    width: 100%;
    font-family: 'uncut_sansmedium';
    src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
        url('fonts/uncutsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-size: 1.1em;
    background-color: rgb(255, 255, 255);
}

.header-content {
    display: inline-block;
    justify-content: space-between;
}

.left {
    padding-right: 1vw;
}

.right {
    position: absolute;
    right: 0;
    padding-right: 0.5vw;
}

.caroussel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    width: 100%;
    height: 98vh;
    /* Ajustez la hauteur selon vos besoins */
    gap: 0.2vw;
    /* Espace entre les images */
    padding: 0 10%;
    /* Ajoute un padding pour que les images ne touchent pas les bords */
}

.caroussel img {
    scroll-snap-align: start;
    height: auto;
    /* Hauteur automatique pour respecter les proportions */
    /* max-height: 100%; */
}

img {
    width: auto;
    max-height: 94vh;
}


footer {
    /* position: fixed; */
    position: absolute;
    bottom: 0;
    padding: 0.5vw 1vh;
    width: 100%;
    font-family: 'uncut_sansmedium';
    src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
        url('fonts/uncutsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    background-color: white;
    /* color: white;
    mix-blend-mode: difference; */
}

.footer-content {
    display: inline-block;
    padding-right: 1vw;
}

#image-credits {
    margin: 0;
}


.text {
    padding: 1vw 2vh;
    margin-right: 20vw;
    font-family: 'uncut_sansmedium';
    src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
        url('fonts/uncutsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-size: 1.4em;
}

@media screen and (max-width: 575px) {
    img {
        width: auto;
        max-height: 50vh;
    }

    header {
        /* position: fixed; */
        padding: 2vw 1vh;
        width: 100%;
        font-family: 'uncut_sansmedium';
        src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
            url('fonts/uncutsans-medium-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-size: 0.85em;
        background-color: rgb(255, 255, 255);
    }

    .right {
        position: absolute;
        right: 0;
        padding-right: 2vw;
    }

    footer {
        /* position: fixed; */
        position: absolute;
        bottom: 0;
        padding: 2vw 1vh;
        width: 100%;
        font-family: 'uncut_sansmedium';
        src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
            url('fonts/uncutsans-medium-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-size: 0.85em;
        background-color: white;
        /* color: white;
        mix-blend-mode: difference; */
    }

    .text {
        padding: 2vh;
        margin-right: 0vw;
        font-family: 'uncut_sansmedium';
        src: url('fonts/uncutsans-medium-webfont.woff2') format('woff2'),
            url('fonts/uncutsans-medium-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-size: 1.2em;
    }
}