.loading-spinner{
    background: #ffffff;
    z-index: 100;
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
}

.loading-text{
    background: #ffffff;
    color:purple;
    z-index: 100;
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
}

.loading-text p{
    font-size: 0.9rem;
    font-weight: bold;
}

.loading-spinner-disappear{
    animation: vanish 5s forwards;
}

.loading-spinner-active{
    display: block;
}


@keyframes vanish{
    100%{
        display: none;
        visibility: hidden;
    }
}