.backBtn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9;
  width: 25px;
  background-color: rgb(255, 255, 255);
  border-radius: 100%;
  padding: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
}

.backBtn:hover {
  background-color: rgb(240, 240, 240);
}

.backBtn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9;
  width: 25px;
  background-color: rgb(255, 255, 255);
  border-radius: 100%;
  padding: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
}

.backBtn:hover {
  background-color: rgb(240, 240, 240);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  z-index: -1;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
}
html,
body {
  height: 100%;
  overflow: hidden;
}

.container {
  height: 100vh;
  width: 100%;
}

canvas {
  display: block;
  background-color: white;
}

@media (max-width: 767px) {
  .container {
    height: 50vh;
    width: 100vw;
  }
}
