.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000000, #01030ff3, #01071b);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    color: #b4b3be;
    z-index: 21;
  }
  
  #logo_svg {
    height: 200px;
    width: 200px;
    stroke: white;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 4500;
    animation: draw 8s ease;
    z-index: 22;
  }
  
  @keyframes draw {
    0% {
      stroke-dashoffset: 4500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  .name-container {
    height: 30px;
    /* overflow: hidden; */
    visibility: hidden;
  }
  
  .logo-name {
    color: #fff;
    font-size: 20px;
    letter-spacing: 12px;
    /* text-transform: uppercase; */
    margin-left: 20px;
    font-weight: bolder;
  }
  
  
  