* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.loading_full_display {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(ellipse at center, #001a91 1%, #000529 78%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

.loading_full_display > div {
    border: solid 5px #ffffff;
    border-top: solid 5px #0099ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px 0px #000000;
    background: #001471;
}

.loading_full_display > p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgb(0 0 0), 0 0 20px rgb(0 0 0);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}