To change the CSS style in a Jupyter notebook, simply create a cell at the top with the styles:

%%html
<style>
.rendered_html p {font-size: 16px;}
</style>

To apply the CSS style to all the notebooks, create the file ~/.jupyter/custom/custom.css and add the styles there.