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);
These are done without using any border-radius. You can use it on any irregular image!
filter: drop-shadow(1px 1px 2px black);