body {
  /* make the body fits our viewport */
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background-color: #1d1e22;
}

#wrap-texture {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

#canvas {
  /* make the canvas wrapper fits the document */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.plane {
  /* define the size of your plane */
  width: 50%;
  max-width: 400px;
  min-width: 250px;
  height: 80vh;
  z-index: 100;
}

.plane img {
  /* hide the img element */
  display: none;
}
