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!
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!
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.