Welcome
Hey, it's me.
CSS Tip of the Day:
If you have a transparent image of any shape, and you want to cast a shadow, use filter: drop-shadow instead of box-shadow to avoid the invisible border lines.
Example
box-shadow: 0 0 5px black;
filter: drop-shadow(0 0 5px black);
filter: drop-shadow(1px 1px 2px black);