* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #262626;
} 

    #pageContent {
        display: none; 
     }

     .preloader-wrapper {
        width: 100vw;
        height: 100vh;
        z-index: 999;
        display: flex;
        column-gap: 10px;
        background: #262626;
        flex-direction: column;
        display: flex;
        /* left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); */

      }
      
      .preloader-wrapper dotlottie-player {
        z-index: 99999;
        display: flex;
        /* left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); */
        margin: auto;
        width: 50%;
        padding: 0;
      }

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    background-color: #313131;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  * {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }