Imprint
Karin Hugentobler
karinhugentobler@bluewin.ch
Instagram: @k.hugentobler
Photography: www.k-age.ch

Privacy policy
Cookies
This website uses the "Google Analytics" service, which is offered by Google Inc. to analyse website usage by users. The service uses "cookies" - text files that are stored on your terminal device. The information collected by the cookies, such as your IP address, is usually sent to a Google server in the USA and stored there. This data is used to evaluate website usage and website activity. You have the option of preventing the cookie from being stored on your device by making the appropriate settings in your browser.


const elements = [...document.querySelectorAll(".random-bg-elm")]; const colors = ["#268492", "#6948f0", "#fec4c2", "#87a3c2"]; elements.forEach((elm) => { elm.addEventListener("click", () => { let rndColor = colors[Math.floor(Math.random() * colors.length)]; elm.style.background = rndColor; }); });