Help with resizing element portfolio project

Hi all,

I’m almost finished with the portfolio page project, but I can’t seem to figure out how to complete #10:
User Story #10: The height of the welcome section should be equal to the height of the viewport.

Here’s the code so far:

any help is appreciated!

Try giving your welcome section

height:100vh;

Give your #welcom-section height:100vh and also remove the padding you have set for .welcome and i see the items of #welcome-section get under the navbar.

To solve that, wrap the #welcome-section with a div and give it a padding-top: value( height of the navbar) which is 60px

And apply flexbox properties to the div which wraps the #welcome-section to make the items align properly in the center.

Here’s an article if you need,