body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-color: #f0f0f0;
  font-family: 'Roboto', sans-serif; /* Modern, minimalist, futuristic font */
}

#loader-container {
  text-align: center;
}

#loader-bar {
  position: relative;
  height: 5px; /* Height of the progress bar */
  width: 100%;
  background-color: #000; /* Progress bar color changed to black */
  margin-bottom: 10px;
}

#loader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #fff; /* Progress bar fill color */
  transition: width 1s ease-in-out; /* Smooth animation */
}

#vector-image {
  max-width: 100%;
  height: auto;
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-in-out; /* Smooth reveal animation */
}

#loading-text {
  margin-top: 10px;
  font-size: 18px; /* Adjust font size as needed */
  color: #555; /* Text color */
}

#progress-text {
  font-size: 14px; /* Adjust font size as needed */
  color: #888; /* Text color */
}
