

body{
    background-color: black;
}

svg{
    width: auto;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.open{
    opacity: 0;
}

.open:hover{
    opacity: 100%;
    cursor: pointer;
}

.traverser{
    pointer-events: none;
}


/*meubles qui bougent*/
#a{
    position: absolute;
    z-index: 2;
    height: 85%;
    left: 5rem;
    top: 2rem;
    pointer-events: none;
}

#b{
    position: absolute;
    z-index: 2;
    height: 35%;
    left: 42rem;
    top: 25rem;
}

#c{
    position: absolute;
    z-index: 2;
    height: 35%;
    left: 42rem;
    top: 25rem;
}


#rideau{
    position: absolute;
    height: 100vh;
    width: 100vw;
    width: auto;
    z-index: 10;
    pointer-events: none;

}





@font-face {
    font-family: 'amarante';
    font-weight: 400; /* Graisse : regular */
    src: url('font/Amarante-Regular.woff') format('woff');
} 
/* tableau avec noms*/

#tableau{
    height: 20%;
    position: absolute;
    top: 150px;
    left: 900px;
    rotate: 7deg;
}

#tableau:hover{
    rotate: -5deg;
    translate: -12px 24px;
    cursor: pointer;
}


.hidden {
  display: none;
}



body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(0, 0, 0);

}

section{
    position: absolute;
    align-items: center;
    width: 100vw;
    height: 50vh;
    scale: 0.15;
    top: 40px;
    z-index: 200;
}

.page{
    width: 100%;
    height: auto;
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: transform 0.5s ease-in-out;
    transform-style: preserve-3d;

}

#page1{
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: transparent;
    z-index: 1;
}


#page2{
    transform: rotateY(180deg);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: transparent;
    z-index: 2;

}

#page2 #texte{
    position: absolute;
    align-items: center;
    font-size: 90px;
    padding: 0 25px;
    line-height: 1.5;
    font-family: 'Franklin Gothic Medium';
}

a{
    color: rgb(94, 62, 28);
    text-decoration: none;
}

#page2 #texte #titre{
    font-size: 120px;
    font-weight: bold;
    line-height: 1.5;
    font-family: "amarante";
}

