Fixed it. The issue was the paragraph tag:
<p>
needed formatting to remove default margins and properly center text. Adding this fixed issue:
.Objective p {
margin: 0; /* Remove default paragraph margins to center text properly */
}
Left post in case someone else has same issue