/* LOADER */
#loading {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 1;
    background-color: rgb(255, 255, 255);
    z-index: 99;
    align-items: center;
    justify-content: center;
    z-index: 5000000000;
}
  
#loading-image {
    z-index: 10000000000;
    width: 150px;
    animation: bounce 3s infinite ease-in;
}

@keyframes bounce {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.9);
        opacity: .3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Cursor */