.worldmap-container {
  position: relative;
  overflow: hidden;
	background-repeat: no-repeat;
	background-attachment: fixed; /* << Das macht den Hintergrund fixiert! */
  min-height: 200px;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.worldmap-container.visible {
  transform: scale(1);
  opacity: 1;
}

.travel-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.line {
  stroke-dasharray: none;
  stroke: red;
  stroke-width: 4;
}

.worldmap-container, .text-column {
 /* flex: 1 1 50%;
  max-width: 50%; */
  height: auto;
}