Help with my Pen

Need to figure out how to extend the background color so it is below my image more without compromising my border-radius. http://codepen.io/meganjm711/pen/oWbNrO/

If I understand you, adding padding to that div will do it -

.green-background {
  background-color: #BCED91;
  padding-bottom: 40px;
}

That did the trick. Thank you!