#splashscreen {
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: var(--splash-bg);
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
}

#progress-bar-container {
  width: 200px;
  position: relative;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent));
  width: 0%;
  animation: fakeProgress 10s forwards ease-in-out;
}

@keyframes fakeProgress {
  0% {
    width: 0;
  }

  80% {
    width: 90%;
  }

  100% {
    width: 90%;
  }
}
