#splashScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#threeContainer {
  width: 80vw;   /* 80% of the viewport width */
  height: 80vh;  /* 80% of the viewport height */
}


#splashContent {
  text-align: center;
  color: #fff;
}

#splashMessage {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-top: 20px;
}

#progressBar {
  width: 300px;
  height: 10px;
  background: #444;
  margin: 20px auto;
  border-radius: 5px;
  overflow: hidden;
}

#progressBarFill {
  height: 100%;
  width: 0;
  background: #00ff00;
  transition: width 0.1s;
}
