<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'c&amp;a'; /*a name to be used later*/
    src: url('./../fonts/Champagne &amp; Limousines.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'c&amp;a-bold'; /*a name to be used later*/
    src: url('./../fonts/Champagne &amp; Limousines Bold.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'c&amp;a-ita'; /*a name to be used later*/
    src: url('./../fonts/Champagne &amp; Limousines Italic.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'arcane'; /*a name to be used later*/
    src: url('./../fonts/Arcane.ttf'); /*URL to font*/
}

body{
        overflow-x: hidden;
        overflow-y: hidden;
}

.return{
    align-items: center;
    position: absolute;
    top : 10px;
    left : 10px;
    z-index: 1000;
    width:30px;
    height: 30px;
    cursor: pointer;
}

.nb
{
    animation: nb 0.5s;
}
@keyframes nb {
    0% {background-color: #FFFFFF;}
    100% {background-color: #000000; }
}

.invert
{
    animation: invert 0.5s;
}
@keyframes invert {
    100% {
        filter: invert(100%);}
    }

    .bn
    {
        animation: bn 0.5s;
        background-color: black;
    }
    @keyframes bn {
        0% {background-color: #000000; }
        100% {background-color: #FFFFFF; }
    }

    .nopadding {
        padding: 0 !important;
        margin: 0 !important;
    }

    #molList{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1%;
    }

    /*video{
    max-height: 18.7rem;
}
*/
.black_back{
    background-color: black;
}

.imgDisplayer{
    z-index: 990 !important;
    align-self: center;
    position: absolute;
}

.audioImg {
    display: flex;
    flex-direction: column;
}

.audioImg img{
    max-width: 53vw;
    max-height: 90vh;
}

#interactMol{
    max-width: 100vw;
    max-height: 100vh;

    padding: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #ECECF9;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
#interactMol #p5Mol{
    height: 87vh;
    width:100%;
}

#p5Mol * {
    cursor: move;
}

#miniMol{
    width: 100%;
    height: 13vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


#miniMol *{
    align-self: flex-end;
}

#miniMol a{
    height: 100%;
    display: flex;
    margin-left: 20px;
    margin-bottom: 10px;
}
#miniMol #tab{
    height: 80%;
}
#miniMol p{
}

#formula{
    font-family: "arcane";
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 50px;
}


#infos{
    border: solid black 2px;
    padding: 15px;
    max-width : 45vw;
    display:flex;
    flex-direction: column;
    position:absolute;
    z-index : 999;
    background-color: white;
}

#infos *{
    position: relative;
    z-index : 999;
}

#infos .filler{
    z-index: 10;
    flex-grow: 1;
}

#infos .infoTexts{
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#infos .infoTexts *{
    text-align: justify;
    text-justify: auto;
    text-align-last: center;
}

#infos .infoTexts h1{
    margin : 0px 0px 20px 0px ;
    line-height : 1;
    font-size: 250%;
    font-weight: 800;
    font-family: "c&amp;a-bold";
}

#infos .infoTexts #title{
    margin :0px 0px 3px 0px ;
    line-height : 1;
    font-size: 20px;
    font-family: "c&amp;a-bold";
    text-transform: uppercase;
}

#infos .infoTexts h2{
    margin :0px 0px 5px 0px ;
    line-height : 1;
    font-size: 20px;
    font-family: "c&amp;a";
    text-transform: capitalize;
}

#varInfos *{
    font-size: 18px;
    font-family: "c&amp;a";
    line-height : 1.1;
    text-align: justify;
    text-justify: distribute;
    text-align-last: center;
}

#rpzs {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

#rpzs *{
    max-height: 20vh;
    max-width: 15vw;
    padding-top:  5px;
}

footer{
    display: flex;
    justify-content: center;
    margin-top: 3%
}
}
</pre></body></html>