@klausm: are you trying to create the line height of the text or spacing after each paragraph that is margin bottom.
1. For margin bottom, just decrease the margin-bottom form 40px to what ever you want in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (min-width: 768px) {
p { margin-bottom: 40px; }
}
2. If it’s line height, then you need to decrease 1.8 to your desire unit and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
body, button, input, select, textarea { line-height: 1.8; }