#preloader-wrapper {
background-color: #fdfaf8;
z-index: 10000;
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.preloader-container {
position: relative;
overflow: hidden; direction: ltr;
}
.preloader-container > div {
position: relative;
display: inline-block;
font-size: 40px;
font-weight: 400;
line-height: 1;
margin-right: 5px;
margin-left: 0;
text-transform: uppercase;
color: black;
opacity: 0;
animation: text-to-top 3s ease-in-out infinite;
}
@keyframes text-to-top {
0% {
transform: translateY(100%);
}
30% {
opacity: 1;
transform: translateY(0);
}
80% {
opacity: 0;
}
}