Babbling About CSS Coding
I was playing around with image masking in CSS—using a local PNG as a mask—but it just wouldn’t load.

Normally, I use SVGs for this kind of thing, but our office server doesn’t support them, so I had to look for another option.

At first, I thought the problem was just with local files. So I uploaded the PNG to the server… still didn’t work.

THE FIX
I browsed any solution and then found BASE64!
I tried converting the PNG to a BASE64 and embedding it directly into the CSS! Worked instantly!!