I'm trying to create multiple circular shadows on empty div using box-shadow property and I've got the desired effect on chromium browsers and Firefox, but Safari renders the same code differently - the shadows are more square-looking and colors are less intense in the center of shadow.
Here's a comparison:
Chrome vs
Safari.
I'm basically doing this in css:
box-shadow: 20px 20px 40px 32.5px rgb(241, 238, 243),
20px 20px 55px 50px rgb(218, 44, 204);
I made a full reproducible example here: https://jsitor.com/pI7ZoBvTQQ
Does anyone know how to make it look the same in all browsers?
EDIT: Adding -webkit prefix doesn't work