
body {
    margin: 0;
    padding: 0;
    background-color: #f4fdff;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0%;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.text {
  position: absolute;
  bottom:1%;
  width:100%;
  text-align:center;
  color:#1c1fff !important;
  font-family:'Tahoma', sans-serif;
}

.wave-text span {
    display: inline-block;
    font-size: 3rem;
    animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(4n + 1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(4n + 2) {
    animation-delay: 0.2s;
}
.wave-text span:nth-child(4n + 3) {
    animation-delay: 0.4s;
}
.wave-text span:nth-child(4n + 4) {
    animation-delay: 0.6s;
}

.wave-text .space {
  width:0.4rem;
  animation:none;
  transform:none;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}


.text h1 {
    font-size:12rem;
    margin:0;
}

.loader.hidden {
  display: none;
}
