#loading-screen {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.logo {
  width: 30vw;
  height: auto;
  margin-bottom: 30px;
  transform: translateY(1.5rem);
  opacity: 0;
  animation: logo 2s ease;
}

.loading-bar {
  width: 30vw;
  height: 10px;
  background: #22222200;
  border: 1px solid #5555559f;
  border-radius: 2px;
  overflow: hidden;
}

.loading-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(96deg, #a7a7a7, #ffffff) !important;
  animation: fill-bar 2s ease-out forwards;
}

@keyframes fill-bar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

.loadingwelcome {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 2rem;
    color: white;
    margin: 1rem;
    margin-top: 3rem;
    opacity: 1;
    animation: message 2s ease;
    transform: translateY(-1.5rem);
    display: none;
    
}

@keyframes message {
    0% { transform: translateY(1.5rem);}
    60%, 78%, 90%, 100% { opacity: 1; transform: translateY(-1.5rem);}
    73%, 75%, 81% { opacity: 0.1; }
}

@keyframes logo {
    0% { transform: translateY(-1.5rem);}
    60%, 78%, 90%, 100% { opacity: 1; transform: translateY(1.5rem);}
    73%, 75%, 81% { opacity: 0.1; }
}