body {
  margin: 0;
  overflow: hidden;
  padding: 0;
}

#hint {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  color: white;
  display: flex;
  font-size: 24px;
  padding: 100px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  cursor: pointer;
  z-index: 10;
}

#legendPanel{
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  border-color: transparent;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  opacity: 0.6;
}

.control{
  padding: 5px;
  text-align: left;
}

.action{
  padding: 5px;
  text-align: right;
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loading-screen-div {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0px 400px;
}

#loading-text, .loading-extra-text {
  color: white;
  font-size: 24px;
  font-family: monospace;
}