bottom center is keeping the bottom of the image aligned with the bottom edge of the viewport as you resize it. So when making the window shorter, the image will move up to compensate.
Try top center to always keep the top edge of the image aligned with the top of the viewport.
JSFiddle
EDIT:
As per further discussion with OP, the following was done using JavaScript/jQuery...
1) Initial window height is retrieved.
2) Image height is subtracted from window height to give the offset from the top of the window.
3) The background-position of the image is fixed using jQuery css() with the calculated offset from the top.
4) Resizing the window has no effect on the image's position since position is only calculated when the page initially loads.
Notes: The code assumes it's the same image and you know its height. The code could be altered to calculate an image's height if needed.
Original CSS placing the image is left intact as a fallback. Without JavaScript, image will still be placed at the bottom as in the OP's original code.
Full window demo: http://jsfiddle.net/nMs56/12/show/
Code: http://jsfiddle.net/nMs56/12/