.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.svg-animation {
  stroke: black;
  fill: transparent;
  stroke-width: 2;
  display: none;
}

#logo_svg_v2 {
  position: absolute;
  fill: transparent;
  stroke: black;
  stroke-width: 2;
}

#svg-small {
  stroke: black;
  fill: transparent;
}

/* Animacja wypełniania kształtu */
@keyframes fillShape {
  from {
    fill: none;
  }

  to {
    fill: black;
  }
}

svg {
  height: 200px !important;
}

svg {
  animation: logo_appear 2s cubic-bezier(1, 0, 0, 1) both;
  transform-origin: center;
  stroke: transparent;
  width: calc(100vw - 60px);
}

@keyframes logo_appear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#animation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  /* lub przezroczystość */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}

#animation-overlay.hide {
  opacity: 0;
  pointer-events: none;
}