
@keyframes fade-loading {
    0%, 100% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
  }
  
  .loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    gap: 10px;
  }
  
  .loading-container.complete {
    display: none;
  }
  
  .loading-bi-ani {
    width: 92px;
    height: 29px;
    background-image: url('blitzcrown.svg');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    animation: fade-loading 4s infinite;
  }
    
  .loading-name-ani {
    width: 130px;
    height: 20px;
    background-image: url('bitext.svg');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    animation: fade-loading 4s infinite;
  }