Nightwandering

Hear Cecilie talk about the inspiration for the new collection

let streamBlockOptions = { root: null, rootMargin: "0px", threshold: 0, }; let streamBlockOptionsCallback = (entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { document.querySelector('.header .inner-container').classList.add('header-white'); } else { document.querySelector('.header .inner-container').classList.remove('header-white'); } }); }; let streamBlockObserver = new IntersectionObserver(streamBlockOptionsCallback, streamBlockOptions); let streamBlockTarget = document.querySelector(".stream-block"); streamBlockObserver.observe(streamBlockTarget);