Perspectives in their diversity
My name is Karin Hugentobler.

I graduated from HGK FHNW in Basel with a Bachelor's degree in Visual Communication, and I'm currently finishing my MA in User Experience and Data Visualisation at FHGR. After a few stops along the way, I'm now at SimpleTrain, a train travel startup that makes booking international train tickets easy.I'm a graphic designer who is especially enthusiastic about surprising visual messages that make a difference, UI/UX, and data visualisation. Whether static or in motion, as long as the message moves something.

I like helping people understand and communicate complex circumstances. The uniqueness of different stories motivates me to design every day.

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; }); });