    /* STYLE PAGE SPECTACLES */
    
    .slider-container {
        position: relative;
        overflow: hidden;
        width: 100vw;
        height: 100vh;
        display: flex;
        transform: scale(0.85);
        margin-top: -50px;
    }
    /* style des textes */
    
    .left-slide {
        height: 100%;
        width: 35%;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.5s ease-in-out;
    }
    
    .left-slide>div {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    
    .left-slide h1 {
        font-size: 40px;
        margin-bottom: 10px;
        margin-top: -30px;
    }
    /*style des affiches */
    
    .right-slide {
        height: 100%;
        position: absolute;
        left: 48%;
        width: 65%;
        transition: transform 0.5s ease-in-out;
    }
    /*boutons flèches up down*/
    
    button {
        background-color: #fff;
        border: none;
        color: #aaa;
        cursor: pointer;
        font-size: 16px;
        padding: 15px;
    }
    
    button:hover {
        color: #222;
    }
    
    button:focus {
        outline: none;
    }
    
    .slider-container .action-buttons button {
        position: absolute;
        left: 35%;
        top: 50%;
        z-index: 100;
    }
    
    .slider-container .action-buttons .down-button {
        transform: translateX(-100%);
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    
    .slider-container .action-buttons .up-button {
        transform: translateY(-100%);
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    /*adapt responsive */
    
    .reduce {
        width: 40vw;
        height: 100vh;
    }
    
    #t1 {
        background-color: #B5B822;
    }
    
    .marg {
        margin: 100px;
        font-size: 1.5em;
    }
    
    @media screen and (max-width: 1200px) {
        .slider-container {
            flex-direction: column;
            transform: scale(0.75);
        }
        .left-slide {
            width: 100%;
        }
        .slider-container .action-buttons button {
            left: 15%;
            top: 77%;
        }
        .left-slide h1 {
            display: none;
        }
        .reduce {
            width: 100vw;
        }
        .right-slide {
            left: 0;
            z-index: -1;
        }
        #t1 {
            background: transparent;
        }
        .marg {
            background: #B5B822;
            border-radius: 10px;
            transform: translate(60px, 190px);
            padding: 10px;
            box-shadow: 10px 10px 10px black;
            color: black;
        }
        button {
            background-color: #B5B822;
            font-size: 24px;
            padding: 16px;
            color: black;
        }
    }
    
    @media screen and (orientation:landscape) and (max-width:900px) {
        .marg {
            margin: 100px;
            font-size: 1em;
        }
        .left-slide h1 {
            display: none;
        }
        .slider-container {
            transform: scale(0.65);
        }
        .slider-container .action-buttons button {
            top: 80%;
        }
    }