Set the padding-top property.

<html>
<head>
<style>

.heavyObjects {
padding-bottom: 20px;
padding-top: 60px;
}
p {
background-color: lightBlue;
}
</style>
</head>
<body>
<h3>Online Physics 101</h3>

<p class="heavyObjects">Objects heavier than water sink to the bottom</p>
</body>
</html>]]>

Make sure to pick padding-top, followed by :, and finally 60px.