body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin: 0;
  background: #1a1a20;
}

#content {
  background: #120e15;
}

#loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    49.18% 50% at 50% 50%,
    rgba(35, 23, 48, 0) 7.21%,
    #0e0a12 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#image_wrapper {
  display: flex;
  justify-content: center;
}

#image_wrapper img {
  height: 79vh;
  @media screen and (max-width: 744px) {
    height: min(72vh, 431px);
    max-height: 325px;
  }
  @media screen and (min-width: 1054px) and (max-height: 800px) {
    height: 72vh;
  }
  max-inline-size: unset;
  max-block-size: unset;
}

#loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 45px;
  @media (max-width: 744px) {
    margin-top: 20px;
  }
}

#progress {
  width: 343px;
  height: 7px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 2px;
  position: relative;
  background-color: #803de9;
  max-width: 90%;
  @media (max-width: 744px) {
    width: 233px;
    height: 7.5px;
  }
}

#bar {
  position: absolute;
  border-radius: 10px;
  width: 98%;
  right: 2px;
  height: var(--progress-bar-height, 4px);
  background-color: var(--progress-color, #040405);
}

#percent {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: #803de9;
  @media (max-width: 744px) {
    font-size: 13.276px;
    line-height: 18.966px;
  }
}

#logo img {
  max-height: 28px;
  @media (max-width: 744px) {
    max-height: 21px;
  }
}
