body {
  background-color: #ffd2f9;
  /* Set to a solid background color for better visibility */
}

div.responsive {
  float: left;
  width: 100%;
  /* Full width to allow proper alignment */
}

div.mapitem {
  position: relative;
  /* Set positioning context for children */
}

.background-map {
  width: 100vw;
  /* Make the background map responsive; adjust as necessary */
  display: block;
  /* Ensures proper spacing */
  max-height: auto;
  justify-content: center;
  align-items: center;
}

.building {
  position: absolute;
  /* Essential for overlapping */
  cursor: pointer;
  /* Change the cursor on hover */
  transition: outline 0.3s;
  /* Smooth transition for outline */
  height: auto;
  /* Maintain aspect ratio */
}

/* Hover effect for buildings */
.building:hover {
  /* outline: 5px solid yellow; */
  filter: drop-shadow(0 0 10px rgb(255, 225, 0));
  /* Yellow drop shadow effect */
  /* Highlighted with a yellow border */
}

/* MEET THE GANG */