/* 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(0,0,0);
}

/* CSS rules */

#Prism-R {
	opacity: 0.81;
	mix-blend-mode: luminosity;
	z-index: 4;
}
#Prism-RGB {
	opacity: 0.97;
	mix-blend-mode: normal;
	z-index: 1;
}
#EYE {
	opacity: 0.27;
	mix-blend-mode:overlay;
	z-index: 3;
}
#Corona {
	opacity: 1;
    z-index: 2;
}

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

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

#hydra, #content, #Prism-RGB, #Prism-R, #EYE, #Corona {
    position: absolute;
    margin: auto;
    width: min(100vh, 100vw);
    height: min(100vh, 100vw);
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

