html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.container {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url('./assets/bg.webp'), linear-gradient(#0b0c21, #03030f);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 70px 0;
  box-sizing: border-box;
}

.noise {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('./assets/noise.svg');
  background-size: 300px 300px;
  background-position: -71px 113px;
  opacity: 0.1;
  mix-blend-mode: color-dodge;
}

.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo {
  margin-bottom: 32px;
  width: 88px;
  height: 40px;
}

.middle {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}

@keyframes logoContainerPulse {
  0%, 100% { transform: scale(1) }
  50% { transform: scale(0.95) }
}

.logo-container {
  position: relative;
  height: 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoContainerPulse 3s ease-in-out 0s infinite reverse;
}

@keyframes shinePulse {
  0%, 100% { transform: scale(1) }
  50% { transform: scale(0.80) }
}

.bg-shine {
  position: absolute;
  width: 366px;
  height: 366px;
  max-width: 366px;
  max-height: 366px;
  animation: shinePulse 3s ease-in-out 0s infinite reverse;
  border-radius: 50%;
  background: radial-gradient(rgba(242, 191, 60, 0.3), rgba(167, 45, 22, 0), rgba(147, 0, 30, 0))
}

.plane-logo {
  position: absolute;
  width: 292px;
  height: 206px;
  background: url('./assets/plane_img_logo.webp');
  background-size: contain;
  top: -52px;
}

.main-logo {
  background: url('./assets/main-logo.webp') no-repeat;
  background-size: contain;
  width: 411px;
  height: 75px;
  position: absolute;
  top: 132px;
}

@media (max-width: 600px) or (max-height: 600px) {
  .middle {
    transform: scale(0.7);
    margin-top: 20px;
  }
  .logo {
    width: 62px;
    height: 28px;
    margin-bottom: 24px;
  }
}

@media (max-height: 460px) {
  .logo-container {
    margin-top: 70px;
  }
  .logo {
    display: none;
  }
  .middle {
    margin-top: 30px;
  }
}

@media (max-height: 400px) {
  .logo-container {
    margin-top: 180px;
  }
  .progress {
    display: none;
  }
}

.progress {
  width: 280px;
  max-width: calc(100% - 30px);
  height: 9px;
  border-radius: 9px;
  margin: 0px -30px 0;
  position: relative;
}
.progress__value,
.progress__line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.progress__value {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  background: #161024;
  height: 7px !important;
  text-align: center;
  color: white;
  font-family: sans-serif;
  font-size: 16px;
  text-indent: 10px;
  line-height: 50px;
}
.progress,
.progress__line {
  background: #53b2f8;
}
.progress__line {
  width: 0%;
  transition: 8s;
  transition-timing-function: linear;
}
.progress[progress='0'] .progress__line {
  width: 33%;
  transition: 5s;
}
.progress[progress='1'] .progress__line {
  width: 66%;
  transition: 3s;
}
.progress[progress='2'] .progress__line {
  width: 99%;
  transition: 1s;
}
.progress[progress='3'] .progress__line {
  width: 100%;
  transition: 0.3s;
}
