#map-label {
  position: fixed;
  top: 10px; /* Adjust as needed */
  left: 50%; /* Adjust as needed */
  transform: translateX(-50%);
  background-color: rgba(10, 2, 2, 0.8); 
  color: whitesmoke; 
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 2em;
  z-index: 1000; /* Ensures the label is above the map */
}

#map {
  width: 100vw;
  height: 90vh;
  max-width: 1024px;
  margin: auto;
  border: 9px solid #007bff;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  background-color: #020507;
  cursor: grab;
}

#map:hover {
  border-color: #a72890;
}

body {
  background-color: black; 
}