#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent */
    backdrop-filter: blur(10px); /* background blur */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d1d1;
    font-size: 3rem;
    z-index: 9999;
    font-weight: 800;
}

#content {
    display: none;
    height: 100%;
    padding: 2rem;
    color: #fff;
}

.loading-text::after {
    content: "";
    animation: dots 1.3s steps(3, end) infinite;
}

@keyframes dots {
    0% {
        content: "L";
    }
    10% {
        content: "Lo";
    }
    20% {
        content: "Loa";
    }
    30% {
        content: "Load";
    }
    40% {
        content: "Loadi";
    }
    50% {
        content: "Loadin";
    }
    60% {
        content: "Loading";
    }
    70% {
        content: "Loading.";
    }
    80% {
        content: "Loading..";
    }
    100% {
        content: "Loading...";
    }
}
