Why is my navbar not staying at the top when I scroll?

https://codepen.io/kaija-montaine/pen/WyKvxx

Because you are not using position: fixed property.

you have to have this.

#navbar {
position: fixed;
width: 100%;

}

Hope it helps.

Did the trick. Thank you!