@media (min-width: 768px) {
    .item-info {
        bottom: -70px;
        position: relative;
        z-index: -1;
    }
}

/* Wrapper */
#wrapper {
    position: relative;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    z-index: 100;
    width: 516px;
    height: 810px;
}

/* Canvas */
#threejs { 
    display: block; 
    padding-right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    width: 100%;
    height: 100%;
    z-index: 1;

    position: relative;
    top: 0px;
    left: 0px;
    margin: 0px;
    border: 0;
    overflow: hidden;
    display: block;
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    
}

#threejs canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}


@media (max-width: 480px) {
    #threejs {
        width: 100%;
    }

    #wrapper  {
        position: relative;
        width: 100%;
        height: 70%;
    }

}
