
.canvas-wrap {
  position: relative;
}
#canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.plane {
  width: 100%;
  position: absolute;
  overflow: hidden;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 1025px) {
  .plane img {
    display: none;
  }
}
.no-curtains .plane {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-curtains .plane img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
