When referring to the URL variable is not recognized. Neither bellow wont work. CSS ``` :root { --pic1: url("../img/test/i-06.jpg"); --pic2: "../img/test/i-07.jpg"; } #a1 { background-image: var(--pic1); } #a2 { background-image: url(var(--pic2)); } ```