#app {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgb(0, 0, 0);
  object-fit: cover;
  /* z-index: 0; */
}

#rotate {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #EA5B46;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 50px;
  display: flex;
  align-items: center; /* Menengahkan secara vertikal */
  justify-content: center; /* Menengahkan secara horizontal */
}

#wrapper {
  /* position: fixed; */
  /* z-index: 9999; */
  background-color: rgba(0, 255, 255, 0);
  width: 100vw;
  height: 100vh;
  display: none;
}


::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: rgba(150, 150, 150, 0.76);
}

::-webkit-scrollbar-thumb {
  width: 7px;
  background-color: rgb(85, 85, 85);
  box-shadow: inset 0 0 6px rgb(0, 0, 0);
}
