Learn how to manage feelings like anxiety and depression with Catch It. The app will teach you how to look at problems in a different way, turn negative thoughts into positive ones and improve your mental wellbeing.
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}