Hello There,
Thanks for updating in! Even if you set your image with same dimensions with your desktop screen, it will still be stretch out or blown out because of how the background image works. Please understand that when you set a background image, the background image size is set as cover to cover the whole section. To have a better understanding on how background images works, please check this out: https://davidwalsh.name/background-size
In the section ( and with parallax background), we use the background-image: cover;
by default which would cover the whole area of the container. This is responsive enough which will always covers the whole area. The only thing to consider here is that if your image size is smaller, it will be stretch out and if you have a bigger image, it will get cut off.
Yes we can use background-size: 100% 100%;
which is also responsive but your image will either be stretch out or get squeezed depending on the size of the container.
Yes we can also use background-size: 100%
auto but then as soon as you resize your browser or on smaller screen sizes, you will probably have white spaces around the image.
Or we can also use background-size: contain;
but then this is not a good choice because you will see white spaces around your image.
Hope this explains the background image property briefly. Thank you for your understanding.