Portfolio challenge completed

My personal portfolio challenge is done. Even though I met the user story requirements, there are a few things I couldn’t figure out.

  1. How to get navbar to stay pinned to top
  2. How to get Logo/Navbrand in the center of the navbar
  3. Social media links not perfectly centered

Any suggestions on these would be appreciated. Nonetheless, I’m happy to have completed the challenge and will be moving on to JavaScript.

For getting navbar to stay on top this should do it :

.navbar {
  background-color: #102f78;
  width: 100%;
  position: fixed;
  top:0;
  z-index:999; }