Links appear messed up

Here: https://codepen.io/sp2012/pen/VVgmGO The links in the nav bar overlay one another. Any ideas?

You have set padding-top: 100px on each of your links. You’ve basically “extending” them up top by 100px, which means the clickable area becomes quite large. Use margin-top instead.

If that’s what you meant anyway, since it looks like you’re changing your pen, now you have the links on top of the content.

Thanks, I managed to make it work.