How can I customize my mouse cursor?

I created a code which allows you to achieve the solution.

Code Is placed in the custom code section of the website.

Feel free to use it, you can replace the URL with any other you wish. Please note that I used a PNG image with 32x32px size and uploaded it in the media manager of my website

<script>
document.addEventListener('DOMContentLoaded', function() {
    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = 'body { cursor: url("https://static.wixstatic.com/media/c21d41_e5c64fc444cb423191dd83bc03b9badd~mv2.png"), auto; }';
    document.head.appendChild(style);
});
</script>

image