Background Image
Hi, I´m trying to set a background image inside mi css body, but I can´t and I don´t know why. Mi folders order is: web project css syle.scss style.css img backgroundImage.jpg index.html This is mi .scss: *, *::after, *::before { box-sizing: border-box; padding: 0; margin: 0; } body { background-image: url(../img/backgroundImage.jpg); .main-container { height: 100vh; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 15% 70% 15%; grid-template-areas: "cabecera cabecera cabecera cabecera" "principal principal principal sidebar" "pie pie pie pie"; .main-header { padding-top: 1rem; display: flex; flex-wrap: nowrap; justify-content: space-between; grid-area: cabecera; border: 2px solid black; .logo{ margin-left: 2rem; margin-top: 1.4rem; text-transform: uppercase; } .main-nav{ ul{ margin-right: 2rem; margin-top: 2rem; display: flex; li { list-style: none; margin: 0 0.5rem; a{ text-decoration: none; color: black; cursor: pointer; } a:hover{ color: white; font-weight: bold; } } } } } .main-section {