body {
  margin: 0;
  padding: 0;
}

.scene {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  /* background: linear-gradient(90deg, #1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b) !important; */
  /* background: linear-gradient(90deg, #0a575c, #1a6d6e, #2c8580, #409c90, #55b59f, #6ecdad, #89e6ba, #a6ffc6) !important; */
}

.img-container {
  width: 100vmin;
  height: 100vmin;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.img-container.hideImages img {
  opacity: 0;
}

img {
  width: 10vmin;
  height: 10vmin;
  opacity: 1;
}

img.burn {
  mix-blend-mode: color-burn;
}
img.dodge {
  mix-blend-mode: color-dodge;
}
img.inverted {
  filter: invert(1);
}