To make the background image fill the screen vertically regardless of screen size you need to add a couple custom CSS rules:
#background-image {
background-attachment: fixed;
background-size: auto 100%;
}
Note: this means you will no longer be able to edit the vertical position of the image.