body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

#splash {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffffff;
  width: 100vw;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.splash-image {
  width: 50%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.progress-bar-container {
  width: 80%;
  max-width: 300px;
  height: 10px;
  background-color: #D9D9D9;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(253.93deg, #22BDAB 0%, #2CD49C 100%);
  transition: width 0.3s ease;
}
