Pls help with Technical documentation page

Tell us what’s happening:

I’m finding it difficult bringing the #navbar to the left in desktops.
Below is my link:

Your code so far


Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 7.0; SM-G925F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.116 Mobile Safari/537.36.

Challenge: Build a Technical documentation page

Link to the challenge:

Welcom, Munachiso.

In your CSS, you do not have any code for the nav, when the window width is greater than 850px. Either, write another media query for just the navbar, or add something similar to this below all your CSS:
This will just pass the tests. I would spend some time fixing the design…

#navbar {
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 4;
}

Hope this helps.