/* curtains js */
#curtains-wrapper {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

#canvas {
  width: 100vw;
  height: 100vh;
}

.curtain-plane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.curtain-plane img {
  display: none;
}

.no-curtains .curtain-plane {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-curtains .curtain-plane img {
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}


@media screen and (min-width: 40em) {

	.curtain-container {
		height: 100vh;
		width: 100%;
	}
}
/* ------------- */
