Modifying CSS in Wordpress theme

Yes the list text looks OK now, but you are in charge of aesthetic appearance, not me :grinning:.

Unfortunately while the paragraph and list text of the first blog on your home page now looks good, your CSS changes have not affected the other blogs on your home page. Developer Tools show that the paragraph <p> text is being styled by the CSS on line 95 of your HTML file. Most paragraphs have been given these two classes in the HTML tag::
<p class="has-text-align-justify has-medium-font-size">

On HTML line 95 the font size is set by:
.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}
Where the CSS variable has been set on line 95 by:
--wp--preset--font-size--medium: 20px;

This is taking precedence over your recently edited <p> font size declaration of 1.6em.

I guess you have chosen 20px at some point within WordPress, but not for your first blog for some reason.

I am not sure, but I think if on line 95 if you edit:
--wp--preset--font-size--medium: 20px;
to:
--wp--preset--font-size--medium: 1em;
then your 1.6em will come into play (and the text will become accessible for those with poor eyesight).

As well as the issue with styling sub-headings, you may like to give some attention to photo caption text.

By simulating a small smartphone in Google Chrome, I see that photos are being squeezed:

squish