.loading {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg);
  z-index: 999999999999 !important;
  pointer-events: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;

  line-height: 0px;
}

.logo {
  position: relative;
  width: 160px;
  height: 160px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  --uib-size: 160px;
  --uib-color: var(--accent-strong);
  --uib-speed: 2s;
  --uib-bg-opacity: .1;

  height: var(--uib-size);
  width: var(--uib-size);
  transform-origin: center;
  overflow: visible;

  position: absolute;
  top: 0;
  left: 0;
}

.car {
  fill: none;
  stroke: var(--uib-color);
  stroke-dasharray: 15, 85;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: travel var(--uib-speed) linear infinite;
  will-change: stroke-dasharray, stroke-dashoffset;
  transition: stroke 0.5s ease;
}

.track {
  stroke: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: stroke 0.5s ease;
}

#logo {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

@keyframes travel {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -100;
  }
}

body {
  margin: 0;
}

#fact {
    margin-top: 0px;
    line-height: 1.3 !important;
}