
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  background-color: black;
}

/* Contenedor general */
#interactive-map-container {
  position: relative;
  width: 100%;
}

/* Imagen de fondo que se recorre al hacer scroll */
#background-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Capa para los hotspots sobre la imagen */
#hotspot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
