@keyframes resizeFade {
    0% {
      opacity: 0.5;
      transform: scale(0.7);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0.5;
      transform: scale(0.7);
    }
  }
  .loading {
    position: fixed;
    height: 100svh;
    width: 100vw;
    display: flex;
    background: #202020b0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10000;
   
  }
  #loading-svg{
    animation: resizeFade 2s infinite ease-in-out;
  }
