body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fafafa;
  background-color: #232323;
}

.compass {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.coordinates {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  font-size: 2rem;
}

.welcome {
  width: 90%;
  height: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 2px solid rgba(247, 247, 247, 0.8);
  background: rgba(19, 19, 19, 0.95);
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.backdrop {
  background: rgba(19, 19, 19, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hidden {
  display: none;
}
