#loading {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("../images/bg3.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.loader-text {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 3px #000025a5);
}

.loader-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container .loader-box {
    width: 100%;
    height: 2%;
    filter: drop-shadow(0 0 2px #000032a5);
}

.loader-container .loader-box .loader-line {
    height: 10px;
    background: rgb(255, 255, 255);
    animation: loading 3.5s forwards ease-in-out;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    30% {
        width: 40%;
    }
    80% {
        width: 48%;
    }
    100% {
        width: 100%;
    }
}