Project 2 (need help)

https://codepen.io/wingsolo/pen/oNXMoRV

I can’t seem to get the background image to stretch more vertically.
I tried using min-height:100%; and height:100%; not sure what is wrong. I’ve also tried putting in defined values like 1000px or 2000px.

I reviewed your code. You could use background-size: ; to affect your background image.
background-size:
_; uses various inputs like —>
background-size: 200px;
background-size: 200px 100px;
background-size: 200px 100px, 400px 200px;
background-size: auto 200px;
background-size: 50% 25%;
background-size: contain;
background-size: cover;

Try them and see what is to your liking. Hope, that helps.

Thank you so much! I thought background was shorthand for that haha