html – The position of the background on the site

Question:

There is a site .

In the background is the following image . In the lower right corner there are a couple of heroes that make up the very essence of the picture.

The question arose: How to make them always visible, at any screen resolution?

Update: The issue has been resolved in the following way:

background-size:100% 100%;
background-attachment: fixed; 
background-repeat:no-repeat;

background-position: bottom right;

Answer:

The problem was solved in the following way:

background-size:100% 100%;
background-attachment: fixed; 
background-repeat:no-repeat;
background-position: bottom right;

expanded the background of the image in width to 2560px

Scroll to Top