html {
  height: 100%;
}

body {
  color: #fff;
  background-color: #000;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 1vh;
  overflow: hidden;
}

.container {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0;
  position: absolute;
}

@media (orientation: landscape) {
  .container {
    width: unset;
    aspect-ratio: 3 / 4;
    height: 100%;
    left: 50%;
    transform: translate(-50%);
    box-shadow: 0 0 10vmin 5vmin #ffffff26;
  }
}

.flex-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#layer1 {
  z-index: 10;
  background-color: #00000080;
}

#layer2 {
  z-index: 20;
}

#layer3 {
  z-index: 30;
}

#layer4 {
  z-index: 40;
}

#layer5 {
  z-index: 50;
}

#layer6 {
  z-index: 60;
}

#layer7 {
  z-index: 70;
}

#layer8 {
  z-index: 80;
}

#layer9 {
  z-index: 90;
}

#layer10 {
  z-index: 100;
}

#layer11 {
  z-index: 110;
}

#layer12 {
  z-index: 120;
}

#layer13 {
  z-index: 130;
}

#layer14 {
  z-index: 140;
}

#layer15 {
  z-index: 150;
}

#layer16 {
  z-index: 160;
}

#layer17 {
  z-index: 170;
}

#layer18 {
  z-index: 180;
}

.canvas {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.mmHexagram {
  background-color: #000c;
}

.mmHexagram div {
  overflow: unset;
  position: relative;
}

.perspective-transform {
  transform: perspective(500px)rotateY(20deg)rotateX(10deg);
}

.rotating-div {
  width: 100px;
  height: 100px;
  animation: 42s linear infinite spin;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=index.d2b56fd4.css.map */
