*
{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    overscroll-behavior-y: contain;

}

html,
canvas
{   

    background-color: white;
    overflow: hidden;
}

img{
    display: flex;
    max-height: calc(1vw + 25px);
    border-right: .5px solid black; 
    border-left: .5px solid black;
    padding-left: 3px;
    padding-right: 3px;
}

a{
    text-decoration: none;
    color: inherit;
}

li{
    font-size: calc(8px + 2vw);
    font-weight: 200;
}
.webgl
{

    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    outline: none;

}

.infobox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid black;
    border-bottom: 1px solid black;

    text-align: center;
    z-index: 10;
    position: absolute;
    width: 100vw;
    top: 0;
    margin: 0 auto;


}
.footerbox{
    user-select: none;

   
    display: flex;
    justify-content: center;
    background-color: rgba(171, 217, 255, 0.3);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
    text-align: center;
    z-index: 10;
    position: absolute;
    width: 100vw;
    bottom: 0;
    margin: 0 auto;
}
.footerbox:hover{
    background-color: rgba(171, 217, 255, 0.7);
}

.txtbox{
    border-right: .5px solid black; 
    border-left: .5px solid black;

}
.infotxt{
    user-select: none;
    margin: 5px;
    font-size: calc(5px + 1.2vw);
    color: #000;
    padding: 2px;
    width: fit-content;
}
.txtbox:hover{
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    animation: .15s linear  transformationX
}
@keyframes transformationX{
    0% {    
        background-color: rgba(255, 255, 255, 0.6);
    }
    90%{
        background-color: rgba(173, 216, 230, 0.8);
    }
    100%{
        background-color: rgba(255, 255, 255, 0.6);
    }
}

.selected{
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.visible{
    display: none;
}


h2{
    font-size: calc(30px + 1.2vw);
}
h3{
    font-size: calc(8px + 1.2vw);
}

p{
    font-size: calc(16px + 2vw);
    line-height: 90%;
    
}
.menu_00{
    overflow: auto;
    position: absolute;
    border-top: 2px solid black;
    border-right: 2px solid black;

    border-bottom: 2px solid black;
    z-index: 9;
    width: 93vw;
    height: 80vh;
    background-color: rgba(255, 255, 255, 0.80);
    top:50%;
    transform: translateY(-50%);
    animation: opacity 1s 
}

@keyframes opacity{
    0% {
        opacity: 0;
    }
    50% {
        opacity: .7;
    }
    100% {
        opacity: 1;
    }
}

.menu_header{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.menu_titre{
    padding-left: 15px;
}

.x{
    padding-right: 10px;
    position: sticky;
}
.x:hover{
    cursor: pointer;
    color: #0000006d;
}

.mouve{
    animation: mymove 2s forwards;
    
}

@keyframes mymove {
    from {left: 0px;}
    to {left: -82vw;}
}


.rotate{
    transform: rotate(180deg);
    transition: transform 1s ease;
}


/*# sourceMappingURL=main.css.map*/