private void plusButton_Click(object sender, EventArgs e)
 {
     habit.UpdateTask(true, character);
     navigationMenuUpdater();
     statsLabel.Text = $"+{habit.Positive} | -{habit.Negative}";
     checkKarma(habit.Positive - habit.Negative);
 }