.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(166,255,182,1) 0%, rgba(255,255,255,1) 35%, rgba(188,255,221,1) 100%);
    z-index: 9999;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  #svg {
    width: 80%;
    stroke: #1B4F2B;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 4500;
    animation: draw 8s ease;
  }
  
  @keyframes draw {
    0% {
      stroke-dashoffset: 4500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  .name-container {
    height: 30px;
    overflow: hidden;
    text-align: center;
  }
  
  .logo-name {
    /* color: #fff; */
    font-size: 1.5rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    font-weight: bolder;
  }