Soft drop shadow

I followed the script for the drop shadow which was:

/Text Shadow/
.text-center h1 {
text-shadow: 4px 4px black;
}

But i found the shadow to harsh. How do i soften the shadow up?

Hey there,

I hope you are well today and thank you for your question.

Use rgba color codes: https://www.hexcolortool.com/

/Text Shadow/
.text-center h1 {
text-shadow: 4px 4px rgba(0, 0, 0, 0.54);
}

Best regards,
Support.

where do you add the text shadow script