html,
body {
    background-color: #F5F3F7;
     height:100%;
      width:100%;
      padding: 0px;
      margin: 0px;

}
.splash{
  display: flex;
  justify-content: center;
  align-items: center;
  height:100%;
  width:100%;
   flex-direction: column;
}


.splash-logo{
width:150px;
height:150px;
margin:auto;


}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.box {
  width: 20px;
  height: 20px;
  margin: 0 8px;
  border-radius: 50%;
  animation: jump_4123 1s ease-in-out infinite;
}

.box:nth-child(1) {
  background-color: #4e4e4e;
  animation-delay: 0.2s;
}

.box:nth-child(2) {
  background-color: #bdbdbd;
  animation-delay: 0.4s;
}

.box:nth-child(3) {
  background-color: #4e4e4e;
  animation-delay: 0.6s;
}

.box:nth-child(4) {
  background-color: #bdbdbd;
  animation-delay: 0.8s;
}

@keyframes jump_4123 {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.splashtitle{
color: black;
font-weight: bold;
}
    #progress-container {
      width: 80%;
      max-width: 300px;
      background-color: #ccc;
      border-radius: 5px;
      overflow: hidden;
      margin: 20px auto;
      position: relative;
    }

    #progress-bar {
      height: 10px;
      width: 0%;
      background-color: #4caf50;
      transition: width 0.2s;
    }

    #progress-text {
      position: absolute;
      width: 100%;
      text-align: center;
      top: 15px;
      font-size: 14px;
      font-weight: bold;
    }