.loading-spinner {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-spinner-text span {
    font-size: 3.5rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.loading-spinner-content {
    position: relative;
    height: 300px;
    width: 300px;
    background: linear-gradient(to bottom, rgb(254, 0, 1) 50%, white 50%);
    border-radius: 50%;
    border: 24px solid black;
    animation: spin 1.2s linear infinite;
}

.loading-spinner-content::before {
    content: '';
    position: absolute;
    height: 24px;
    width: 300px;
    background: black;
    top: 150px;
    transform: translatey(-50%);
}

.loading-spinner-content::after {
    content: '';
    position: absolute;
    height: 114px;
    width: 114px;
    border-radius: 50%;
    background: white;
    top: 150px;
    left: 150px;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 24px black, inset 0 0 0 30px white, inset 0 0 0 36px black;

}

/* Spin Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}