* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #FFFFFF;
    overflow: hidden;
  }
  
  .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 35vh;
    background: #fff;
    z-index: 9999;
  }
  
  .loader-container img {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
  }
  
  @media (max-width: 576px) {
    .loader-container img {
      max-width: 300px;
      max-height: 300px;
    }
  }
  
  