#loading-page {
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  font-size: clamp(10px, 20rem, 16px);
}

#loading-page .loading-container {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#loading-page .loading-container .top_containter {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#loading-page .loading-container .top_containter .logo {
  font-size: 200%;
  letter-spacing: 0.2em;
  margin-bottom: 5%;
}

#loading-page .loading-container .top_containter .progress-bar {
  width: 100%;
  height: 1.5%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15rem;
  overflow: hidden;
}

#loading-page .loading-container .top_containter .progress-inner {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #3fa9f5, #6cf);
  transition: width 0.3s ease;
}

#loading-page .loading-container .top_containter .progress-text {
  margin-top: 5%;
  font-size: 120%;
  opacity: 0.85;
}
