-2

enter image description here

codepen link - https://codepen.io/karandixit24/pen/YzrQmdL `

    <div class="main-container">
        <h3 style="text-align: center;">Some of my past projects</h3>
        <div class="post-wrapper">`

please help the buddy out!

user14239
  • 1
  • 3

1 Answers1

2

Your issue is caused by the default vertical margin of the h3 element - setting that to 0 removes the offset:

h3 {
    margin-top: 0;
}

You can prevent issues like this by including a reset stylesheet, for example normalize.css. I'd also recommend reading up on this topic, for example here.

Moritz Friedrich
  • 1,371
  • 20
  • 38