body {
  margin: 0;
  font-family: 'Coming Soon';
  background: #f8f8f8;
}

/* Karte */
#mapContainer {
  position: relative;
  width: 100%;
  margin: auto;
}

#mapImage {
  width: 100%;
  height: auto;
  display: block;
}

/* Klickbare Stadtbereiche */
.city {
  position: absolute;
  background:transparent; 
  cursor: pointer;
}

/* Tooltip */
.tooltip {
  position: absolute;
  display: none;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
  color: black;
  transform: translate(-50%, -100%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

.tooltip.show {
  display: block;
}

/* Feuerwerk */
#fireworks {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Footer */
.footer {
  background: #d7373c;
  text-align: center;
  padding: 1rem;
  font-family: 'Coming Soon';
  color: #000;
}

.footer a {
  color: #000;
  text-decoration: none;
  margin: 0 1rem;
}

.footer a:hover {
  text-decoration: underline;
}
