The problem seems to be related to your folder structure. Background images are a CSS concept, and are applied in CSS file, and hence the relative path used must be relative to the CSS file itself, not the HTML file.
From the information you shared, it seems your CSS file is present in CSS folder, which is parallel to Images folder. Hence the path in your url should be ../Images/Logo.png
Hopefully that would resolve your issue.