

body{
    background-color: black;
}

svg{
    width: auto;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}



#miroir:hover{
    rotate: 6deg;
    translate: 35px -35px;
}

#tableau:hover{
    rotate: 3deg;
    translate: 20px -80px;
    cursor: pointer;
}



/* tableau avec noms*/

@font-face {
    font-family: 'amarante';
    font-weight: 400; /* Graisse : regular */
    src: url('font/Amarante-Regular.woff') format('woff');
} 



.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.4;
    top: 60px;
}

.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: 30px;
    padding: 0 25px;
    line-height: 1.5;
    font-family: 'Franklin Gothic Medium';
    width: 578px;
}

a{
    color: rgb(94, 62, 28);
    text-decoration: none;
}

#page2 #texte #titre{
    font-size: 56px;
    font-weight: bold;
    line-height: 1.5;
    font-family: "amarante";
}


