(Squarespace) Add outline to text on page to make it more readable

To add outline to text on Page, to make it more readable like this.

You can use CSS code like this to Custom CSS.

h1 {
  text-shadow: 5px 4px 5px red;
}

If you want to apply it for specific text block, you can find text ID.

Then use this CSS code.

#block-yui_3_17_2_1_1742541009335_12667 h1 {
  text-shadow: 5px 4px 5px red;
}