body {
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
}

#view {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  /* border: 1px solid #A7A7A7; */
}

#map {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  border: 5px solid #A7A7A7;
  width: 20%;
  height: 20%;
}

#info {
  z-index: 2;
  display: flex;
  flex-direction: row;
  position: fixed;
  top: calc(100vh - 30px);
  left: 10px;
  justify-content: space-between;
  color: #49C431;
}

#close {
  border-radius: 50%;
}

#close:hover {
  cursor: pointer;
  background-color: #680404;
  color: #fafafa;
}

#loading {
  z-index: 3;
  width: 100vw;
  height: 100vh;
  position: fixed;
  font-size: 2rem;
  top: 0;
  left: 0;
  background-color: #5C665E;
  color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullsize {
  width: 100% !important;
  height: 100% !important;
  background-color: #680404;
}