Perspectives in their diversity
My name is Karin Hugentobler.
I graduated from the HGK FHNW in Basel with a Bachelor's degree in Visual Communication and I'm currently studying at the HSLU in the MA Digital Ideation and working in Bern in the design studio Hahn+Zimmermann.

I'm a graphic designer who is enthusiastic about data visualisation. I like to help people understanding complex circumstances. The uniqueness of different stories motivates me to design every day.

I find my tools in the digital and the analogue world and ideas are my resource.

I am looking forward to your questions and and your inputs!
Impressum
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; }); });