Product Landing page assistance needed please?

Hello all from far and wide,
I’m busy with with the landing page project and it says that I have completed all the tests 100% but something’s not right,
I’m struggling to get the body separate from the header.
please have a look and tell what I’m doing wrong?
If there are certain things I can do to make the code more efficient that would be also appreciated.
https://codepen.io/bavi4822/pen/yLemoxM?editors=1100

<body> tag should be the wrapper of the whole layout. You have put the <body> inside div which is wrong. Wrap your whole html layout inside the <body> tag except <script> and <head> and you are good to go :rocket:

<body>
 <div id="page-wrapper"> 
   other stuff......
 </div>
</body>

Hi @RocktimSaikia, thanks for the feedback however it still doesn’t work after trying what you said, any other suggestions?