Height of the welcome section should be equal to the height of the viewport

Apply left:0 and top:0 to the navbar element as shown below:

#navbar {
    position: fixed;
    background-color: goldenrod;
    top:0;
    left:0;
   
}
2 Likes