@keyframes mainInner {
  0% {
    width: 0px;
    height: 0px;
  }
  7% {
    width: 300px;
    height: 300px;
    background: #f55e23;
  }
  30% {
    width: 300px;
    height: 300px;
    background: #f7ac14;
  }
  35% {
    width: 200px;
    height: 200px;
    background: #f7ac14;
  }
  40% {
    width: 350px;
    height: 350px;
    background: #f7ac14;
  }
  45% {
    width: 270px;
    height: 270px;
    background: #f7ac14;
  }
  50% {
    width: 500%;
    height: 500%;
    background: #a2c31d;
  }
  75% {
    width: 500%;
    height: 500%;
    background: #f55e23;
  }
  100% {
    width: 500%;
    height: 500%;
    background: transparent;
  }
}
@keyframes doll {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  5% {
    opacity: 0;
    transform: translateY(200px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
  80% {
    opacity: 1;
    transform: translateY(0px);
  }
  90% {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes slogan {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  45% {
    opacity: 0;
    transform: translateY(200px);
  }
  55% {
    opacity: 1;
    transform: translateY(0px);
  }
  85% {
    opacity: 1;
    transform: translateY(0px);
  }
  95% {
    opacity: 0;
    transform: translateY(-50px);
  }
}
@keyframes loadingMain {
  0% {
    background: #fff;
  }
  85% {
    background: #fff;
  }
  95% {
    background: transparent;
    pointer-events: none;
  }
}
@keyframes bubbles {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#floatingbubbles {
  width: 100vw;
  height: 100vh;
  position: absolute;
  opacity: 0;
  animation: bubbles;
  animation-duration: 5.5s;
}
#loading-main {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background: transparent;
  animation: loadingMain;
  animation-duration: 5s;
  overflow: hidden;
  pointer-events: none;
}
#loading-main-inner {
  position: absolute;
  width: 0px;
  height: 0px;
  border-radius: 3000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f7ac14;
  overflow: hidden;
  animation: mainInner;
  animation-duration: 5s;
}
#loading-circle {
  width: 280px;
  height: 280px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#loading-doll {
  width: 150px;
  height: auto;
  opacity: 0;
  animation: doll;
  animation-duration: 5s;
}
#loading-slogan {
  position: absolute;
  height: 100px;
  width: auto;
  bottom: -50px;
  opacity: 0;
  animation: slogan;
  animation-duration: 5s;
  max-width: 500%;
}
