body {
  margin: 0;
  overflow: hidden;
  /* Prevent scrolling */
}

.background {
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

canvas {
  position: fixed;
  /* Ensure canvas stays fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  /* Example background */
  background-size: cover;
  /* Ensure the background covers the canvas */
}

/* Overlay container */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 11;
  /* Above the canvas */
}

/* Icon buttons */
.icon {
  position: absolute;
  width: 60px;
  height: 55px;
  left: 40px;
  /* Fixed left alignment */
  background-color: transparent;
  border: none;
  color: transparent;
  /* Invisible default state */
  pointer-events: all;
  /* Allow interactions */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* Clickable cursor */
}

.imageclass {
  background-image: url("../img/kt/right.png");
  background-size: contain;
}
.imageclass.ic-1 {
  background-image: url("../img/kt/01.png");
}
.imageclass.ic-2 {
  background-image: url("../img/kt/02.png");
}
.imageclass.ic-3 {
  background-image: url("../img/kt/03.png");
}
.imageclass.ic-4 {
  background-image: url("../img/kt/04.png");
}
.imageclass.ic-5 {
  background-image: url("../img/kt/05.png");
}
.imageclass.ic-6 {
  background-image: url("../img/kt/06.png");
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */