If you want your jpg to take ¾ of the screen, you cannot assume that everyone had the same browser window size. And you probably want to adjust your image's size when the user changes the window's size.
It's possible to make your image stretch to fit the screen using CSS 3 attribute background-size but it will not work in all browsers. Otherwise, you can do it with some clever Javascript.
Downside is that whatever technique you decide to use, you will have issues with picture quality / size. If you keep your picture at 3500px, it'll be clean when looking at it on a big screen, but it'll be long to download. If you make your picture too small, it'll load fast but you'll see the the pixels on a big screen.
I think that most people use screen resolution between 1024px and 1280px. So maybe you should start testing around these size.