/* body {
  margin: 0;
  background: #73b4ab;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  cursor: pointer;
} */

#globe {
  position: absolute;
  /* top: -50%;
transform: translate(-50%, -50%);*/
  right: 55%;
  bottom: -25px;
  width:15vmin;
  height: 15vmin;
  transform-origin: 50% 50%;
   animation: animateBgColor 10s linear infinite;
}

#globe:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url('globe.svg') center center / contain no-repeat;
  z-index: 10;
}

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

@keyframes animateBgColor {
  0% {
    filter: hue-rotate(0deg);
  }

  50% {
    transform: hue-rotate(180deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}
