#logo_map {
    display: flex;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
  }
  
  #logo_map svg {
    width: 90vw; /* oder z.B. 1000px */
    height: auto;
    max-width: 100%;
  }
  

  @keyframes expandBar {
    0% {
      transform: scaleX(1) scaleY(1);
    }
    100% {
      transform: scaleX(30) scaleY(30);
    }
  }
  
  .animate-bar-expand {
    animation: expandBar 0.7s ease-in-out forwards;
    transform-origin: center;
  }

  #transition-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
  }
  
  