#loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #171717;
    z-index: 999;
  }
  
  #loading-bar-container {
    width: 200px;
    height: 4px;
    background-color: rgba(255,255,255,.8);
    margin: .8em 0;
  }
  
  #loading-bar {
    height: 100%;
    background-color: #FC5E00;
    width: 0%;
  }
  
  #loading-text, #loading-percentage {
    color: rgba(255,255,255,.8);
    font-family: sans-serif;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  