
.loader-div{
 width: 100vw;
  height: 100vh;
  background-color: black;
    display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 999;
}

.loader {
  font-size: 6vw;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-weight: bold;
  display: inline-block;
  color: #3f8ece;
  letter-spacing: 2px;
  position: relative;
  box-sizing: border-box;
  font-family: pixel1;
  position: relative;


}

.loader::after {
  content: 'YOUR PIKUSERU';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFF;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  animation: animloader 3s linear infinite;
}

@keyframes animloader {
  0% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}