I have been attempting to include a background image in my project, but for some reason it is not showing up when I check it in the browser. I am compiling the .scss files into a CSS directory.
Below is an image of how my folders are structured: https://i.sstatic.net/rcJDS.png
This is the code snippet where I define the background using the background property:
.graphic-design {
display: block;
width: 100vw;
height: 30vh;
// background: yellowgreen;
margin-top: -8vh;
background-image: url('./images/mobile/image-graphic-design.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}