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

@keyframes tigerMove {
  50% {
    transform: translateY(-5%);
  }
}
@keyframes tigerRotate {
  0%,
  100% {
    transform: rotate(-2deg) translateX(-2%);
  }
  50% {
    transform: rotate(2deg) translateX(2%);
  }
}

.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;
  width: 100%;
}

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

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

.animation {
  position: relative;
  height: 200px;
  width: 200px;
}

.tiger {
  position: absolute;
  width: 348px;
  height: 320px;
  left: -45px;
  top: -110px;
  animation: tigerRotate ease-in-out 3s infinite;
  transform-origin: 30% -20%;

  @media (max-height: 600px) {
    top: -90px;
  }
}

.tiger::before {
  display: block;
  content: '';
  background: url('./assets/tiger.webp');
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: tigerMove ease-in-out 1.8s infinite;
}

.main-logo {
  background: url('./assets/main-logo.webp');
  width: 346px;
  height: 147px;
  position: absolute;
  left: -70px;
  top: 130px;

  @media (max-height: 600px) {
    top: 200px;
  }
}

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

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

@media (max-height: 359px) {
  .animation {
    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);
  height: 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;
}
