How can I remove or resize page titles in Dawn theme?

Hi! Is there anyway to remove the page titles from Dawn theme? I’ve been searching for a couple of days and have tried several different codes and nothing has worked so far. If I can’t remove them, is there a way to atleast make the font size smaller?

Thank you!

To visually hide with CSS the main headings of /pages in dawn use one of the below rules in a global custom-css setting

#MainContent h1 { display: none; }
.main-page-title { display: none; }

https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css

To hide EVERY title including sections on every page type and NOT just /pages is a lot more involved than a single forum post.