html {
  background-color: #373737;  
}

body {
  margin: 0;
}

#container {
  position: relative;
	background-color: black;
  display: none; 
  width:100%;
}

#webglContainer {
    position: absolute;
    width: 100%;
    pointer-events: none;   /* this element will not catch any events */
    z-index: 10;    /* position this canvas at bottom of the other one */
}

#threeContainer {
    position: absolute;
    z-index: 8;      /* position this canvas on top of the other one */
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

/* Zoom In #1 */
.centered figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.centered figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}