.loading-loader {
  position: fixed; /* Cambiado de absolute a fixed */
  top: 0;
  left: 0;
  background: black;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Asegúrate de que el z-index sea lo suficientemente alto */
}

#svg {
  height: 150px;
  width: 150px;
  stroke: #ffffff;
  stroke-width: 3px;
  stroke-dasharray: 4500;
  animation-name: drawandpaint;
  animation-duration: 13s;
  animation-timing-function: ease;
}

@keyframes drawandpaint {
  0% {
    stroke-dashoffset: 4500;
    fill-opacity: 0;
    background-color: black;
  }
  50% {
    fill-opacity: 4;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 100;
  }
}

/* Media query para pantallas de menos de 600px (dispositivos móviles) */
@media (max-width: 600px) {
  #svg {
    height: 120px;
    width: 120px;
  }
}

/* Media query para pantallas de entre 600px y 1024px (tablets) */
@media (min-width: 600px) and (max-width: 1024px) {
  #svg {
    height: 140px;
    width: 140px;
  }
}