/* ART */

html {
	margin: 0;
	padding: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgb(255, 213, 5);
}

/* CSS rules */

#LG1, #LG2, #LG3{
    opacity: 0.82;
	z-index: 2;
}

#L {
	opacity: 0.43;
    mix-blend-mode: normal;
    z-index: 0;
}

#gxtz {
	opacity: 1;
    mix-blend-mode: difference;
    z-index: 4;
}


#hydra {
	opacity: 1;
    z-index: 0;
}

#content {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-pixelated;
    image-rendering: pixelated;
}

#content, #gxtz, #L, #LG1, #LG2, #LG3 {
    position: absolute;
    margin: auto;
    width: min(100vh, 100vw);
    height: min(100vh, 100vw);
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#hydra {
    position: absolute;
    margin: auto;
    width: min(100vh, 100vw);
    height: 100%;
    object-fit: fill;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
