@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i|Oxygen:300");
* {
  box-sizing: border-box;
}

body {
  background: black;
  margin: 0;
  min-height: 100vh;
  font-family: Oxygen, sans-serif;
  color: #fff;
}

#globe {
  cursor: -webkit-grab;
  cursor: grab;
}

#earthoutput {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
}

#earthoutput h1 {
  font-size: 8vw;
  margin-top: 0;
  font-weight: 100;
  line-height: 1;
  position: absolute;
}

#earthoutput div {
  width: 40%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  right: 0;
  padding: 1.3rem;
  line-height: 1.6;
  font-size: 1.2rem;
  pointer-events: none;
}
@media all and (max-width: 540px) {
  #earthoutput div {
    width: 100%;
    left: 0;
    top: 40vw;
  }
}