Im working on a project and im trying to add a background img. The img does work and i can get it to show in a img src="". But when im trying to add it as a background image it does not work. Would be glad if someone could help me out !
html {
    body{
        background: url("images/background.png");
    }
    header {
        @include linear();
    }
    nav {
        text-align: center;
    }
    ul {
        padding-top: 200px;
    }
    li {
        display: inline-block;
        padding-right: 70px;
    }
    a {
        text-decoration: none;
        color: black;
        font-size: 20px;
        transition: all 1s ease;
        font-family: 'Elegant Lux';
        &:hover {
            color: gray;
        }
    }
}
 
     
    