#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: #0005;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader .loader-box {
    background-color: black;
    color: white;
    width: 300px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#loader p {
    text-align: center;
    margin-bottom: 20px;
}

#loader .loader-spinner {
    border: 12px solid #333;
    /* Light grey */
    border-top: 12px solid white;
    /* Blue */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

*{
    padding-right: unset; 
    padding: unset; 
}
