body {
    background-color: #fbf0e4;
  }

.flutter-loader {
    z-index: 999999;
  }
  
  #splash {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0px;
      left: 0px;
      z-index: 999998;
      opacity: 1;
      /* animation type and duration */
      transition: opacity 0.25s;
      background-color: #fbf0e4;
            -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
  }
  
  #splash.remove {
    /* enable click through when run animation */
    pointer-events: none;
    /* start animation */
    opacity: 0;
  }

  #splash .center {
    margin: 0;
    position: absolute;
    max-width: 200px; 
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  #splash .contain {
    display:block;
    width:100%; height:100%;
    object-fit: contain;
  }

  #splash .stretch {
    display:block;
    width:100%; height:100%;
  }

  #splash .cover {
    display:block;
    width:100%; height:100%;
    object-fit: cover;
  }

  #splash .bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  #splash .bottomLeft {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  #splash .bottomRight {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  #loading-message {
    position: absolute;
    top: 70%; /* Adjust the distance from the top as needed */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #555; /* Adjust the text color as needed */
    text-align: center;
  }