body,
html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: var(--violet);
    font-family: var(--fontfamily);
    color: var(--ink);
    font-size: 20px;

}

#zoomroot {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: translate(0, 0) scale(1);
    transform-origin: top left;
}

#gamebg {
    position: fixed;
    top: 0;
    left: 0;
    width: 2808px;
    height: 5000px;
    background-image: url(/img/ui2/bglofi.png);
    background-size: 1400px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: translate(calc((100vw - 1300px) / 2 - 45px),
            calc((100vh - 760px) / 2 - 78px));
}

#wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1300px;
    height: 760px;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;

}

#wrapper button,
#wrapper .interactive,
#wrapper input {
    pointer-events: auto;
}

#game {
    width: 600px;
    margin: auto;
    margin-top: 0;
}

#visuel {
    position: fixed;
    z-index: -1;
    top: calc(50% + -130px);
    left: calc(50% + -4px);
    width: 600px;
    height: 400px;
    transform: translate(-50%, -50%);
}

#neocolgauche {
    position: absolute;
    left: -332px;
    top: 230px;
    width: 340px;
    text-align: left;
    display: none;
    height: 730px;

}

#neocoldroite {
    position: absolute;
    right: -326px;

    top: 33px;
    width: 332px;
    text-align: left;
    display: block;
    height: 730px;


}