@font-face {
  font-family: chill;
  src: url("../fonts/ChillRoundGothic_Normal.woff");
  font-display: swap;
}

@font-face {
  font-family: hangu;
  src: url("../fonts/Hangeuljaemin4-Regular.ttf");
  font-display: swap;
}
html,
body,
#root {
  height: 100%;
  min-height: 100%;
}

.loader-package {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.loader-text-area {
  color: red;
  font-weight: bold;
  opacity: 0;
  animation: 3s linear 1s text-fadein infinite;
  animation-delay: 5s;
}
@keyframes text-fadein {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.loader,
.loader:before,
.loader:after {
  /* background: #6b00b955; */
  background: #1b839627;
  /*
  * load1：执行的动画名
  * 1s：执行一秒
  * infinite：执行无限次
  * ease-in-out：动画以低速开始和结束
  */
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}
.loader:before {
  left: -1.5em;
}
.loader {
  text-indent: -9999em;
  margin: 60px auto;
  position: relative;
  font-size: 11px;
  /* 延时0.16s */
  animation-delay: 0.16s;
}
.loader:after {
  left: 1.5em;
  /* 延时0.32s */
  animation-delay: 0.32s;
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0 #1b839627;
    height: 4em;
  }
  40% {
    /* 实现上部拉伸 */
    box-shadow: 0 -2em #1b839627;
    /* 实现下部拉伸 */
    height: 5em;
  }
}
