body {
    margin: 0;
    background-color: #000;
}
.windowContainer {
    
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
.windowContainer::-webkit-scrollbar {
    display: none; /* Cache la scrollbar */
}
.window {
    position: relative;
    left: 50%;
    width: 100%;
    height: 100vh;
    
    scroll-snap-align: start;
    color: white;
    font-size: 2rem;
   
}
.buttonContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 25%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background-color: #000;
    overflow-y: scroll;
    transition: width 0.5s;
    cursor: pointer;
}
.buttonContainer::-webkit-scrollbar {
    display: none; /* Cache la scrollbar */
}
.key:not(.sharp):active {
    position: relative; /* Nécessaire pour positionner l'ombre */
    transform: translate(0px, 2px); /* Légère pression vers le bas */
    box-shadow: inset 15px 0 15px -10px rgba(0, 0, 0, 0.5), /* Ombre à gauche */
                inset 0 -15px 15px -10px rgba(0, 0, 0, 0.5), /* Ombre en bas */
                inset 0 15px 15px -10px rgba(0, 0, 0, 0.5);  /* Ombre en haut */
}



.key {

    border: 4px solid black;
    border-radius: .3rem;
    transition: all .07s ease;
    display: block;
    box-sizing: border-box;
    z-index: 2;
    cursor: pointer;
    font-family:Arial, Helvetica, sans-serif ;
    font-size: 20px;
    font-weight: bold;
    
    
    }

    
    .key:not(.sharp) {
    float: top;
    width: 100%;
    height: 75px;
    background: rgba(255, 255, 255, 1);
    border-radius: .6rem;  
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 1);  
    display: flex;
    justify-content: right;
    padding-right: 20px;
    align-items: center;
    cursor: pointer;
    }
    .key.sharp:hover{
        background-color: rgb(34, 34, 34); /* Change la couleur de fond */
        color: black; 
    }
    .key.sharp {
    position: absolute;
    width: 50%;
    height: 35px;
    background: #000;
    margin-top: -16px;
    cursor: pointer;
    
    
    z-index: 3;
    }
    .open {
        position: fixed; /* Keep button on screen */
        top: 0px;       /* Position it at the top */
        left: 25%;       /* Default position when keysContainer is open */
        width: 30px;
        height: 50px;
        background-color: #000;
        color: white;
        font-size: 20px;
        z-index: 1000;   /* Ensure it stays on top */
        transition: left 0.5s ease; /* Smooth transition when moving */
        cursor: pointer;
        
    }
      
    .title{
        position: absolute;
        color: white;
        font-size: 60px;
        right: 110%;
        width: 500px;
        top: 10%;
    }
  
    
    .text{
        position: absolute;
        color: white;
        right: 100%;
        width: 600px;
        top: 25%;
        font-size: 20px;
        
    }