html, body {
    /* overflow: hidden; */
    margin: 0;
    font-family: "Radio Canada Big", sans-serif;
}

iframe {
    border: none;
}

video{
    width: 720px;
    height: 480px;
}

#map {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    z-index: 1000;
}

#loading-screen{
    position: fixed; 
    width: 100vw; 
    height: 100vh; 
    background-color: white;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-screen-text{
    font-size: 2rem;
    font-style: normal;
}

#button-a {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    bottom: 50%;
    right: 50px; 
    font-size: 1em;
    color: black;
    border: 1px solid black;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

#button-a:hover {
    background-color: black;
    color: white;
}

#button-a:hover svg{
    stroke: white;
    opacity: 1;
}

@keyframes out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation: out 1s ease-in-out;
    animation-fill-mode: forwards;
}

img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

button {
    font-family: "Radio Canada Big", sans-serif;
}

#debug {
    visibility: hidden;
}










/*! MENU */

#menu {
    z-index: 10;
    background-color: white;
    position: fixed;
    width: 90vw;
    left: 5vw;
    top: 40px;

    display: flex;
    justify-content: space-around;
    align-items: stretch;

    border: 1px solid black;
}

.menu-button {
    z-index: inherit;
    background-color: white;
    color: black;
    font-size: 1em;
    padding: 8px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.menu-button:hover {
    background-color: black;
    color: white;
}

#btn-center {
    z-index: 10;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;

    border: 1px solid black;
}








/*! CANVAS */

h2{
    font-size: 52px;
    font-weight: 700;
    margin: 0;
}

.canvas, canvas{
    width: 7289px;
    height: 4571px;
    position: absolute;
    border: 1px solid black;
    z-index: -10;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.visite-guidee video{
    position: absolute;
    z-index: 1000;
}

.visite-video{
    left: 4746px;
    top: 2725px;
}

.lines-expo{
    left: 5134px;
    top: 2050px;

    position: absolute;
    z-index: -5;
}

.element, .section-titre{
    position: absolute;
    user-select: none;
}

.section-titre{
    transition: transform 0.3s ease-out;
}

.section-titre:hover{
    transform: scale(1.1);
    background-color: black;
}

.section-titre:hover h2{
    color: white;
}

.labbe-0{
    left: 4704px;
    top: 865px;

    background-color: #92F2F9;
}

.guez-0{
    left: 1330px;
    top: 1000px;

    background-color: #F992D3;
}

.visite-0{
    left: 4970px;
    top: 2940px;

    background-color: #92F9B1;
}

.inspirations-title{
    left: 5290px;
    top: 1930px;
    z-index: 1000;
    transition: transform 0.5s ease-out;
}

.inspirations-content{
    left: 4498px;
    top: 1532px;
}

.inspirations-title:hover {
    transform: scale(1.1);
}

.mostra-venise{
    left: 5950px;
    top: 3080px;
}

.annexe-0{
    left: 1250px;
    top: 3850px;

    background-color: #000000;
}

.annexe-0 h2{
    color: white;
}

.annexe-0:hover{
    background-color: white;
}

.annexe-0:hover h2{
    color: rgb(0, 0, 0);
}