html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #05070b;
}

body {
  position: relative;
}

#globe {
  display: block;
  width: 100vw;
  height: 100vh;
  cursor: grab;
}

#globe:active {
  cursor: grabbing;
}

#tooltip {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 160px;
  max-width: 240px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(5, 7, 11, 0.9);
  color: #f4f7fb;
  font: 12px/1.4 Arial, sans-serif;
  pointer-events: none;
  transform: translate(12px, 12px);
  white-space: nowrap;
}
