Change font color and size for all body paragraphs

Hello! Thanks in advance for the help. I’m new to Shapely.

I want to darken and enlarge all the body paragraphs on the site. Please see screenshots. Site url is: http://www.highestpath.dreamhosters.com

There is also a large gap in between some of the sections that I’d like to close. Screenshot of that attached as well.

Thank you!

Hello there,

I hope you are doing well today.

You can use the following CSS code to edit the paragraph font and reduce the gaps by going to Appearance > Customize > Additional CSS and pasting it there.

/*Paragraph font*/
p {
    color: black;
    font-size: 18px;
}

/*Reduce section gaps*/
section, footer {
    padding: 20px 0;
}

Best Regards,
Support