/* ==== CSS RESET ==== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

body {
  background-color: #03045e;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  max-width: 50%;
}

.loading-bar-container {
  width: 100%;
  max-width: 70%;
  height: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: white;
  border-radius: 20px;
  animation: loading 5s linear forwards;
}

@keyframes loading {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
