@import url('https://fonts.googleapis.com/css2?family=ZCOOL+KuaiLe&display=swap');

.loader-wrapper{
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 999;
  background-color: #1c2431;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader{
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 40px;
  color: rgba(255,255,255,1);
}

.loader::after{
  content: '\2026';
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  animation: dots steps(4,end) 2s infinite;
  width: 0px;
}

@keyframes dots{
  to{
    width: 1.25em;
  }
}

