listenStartLevelButton method
Listens to the 'start level button' click events and starts the next level
according to _activeLevel
Implementation
void listenStartLevelButton() {
querySelector("#button_start_level").onClick.listen((MouseEvent e) {
this.startNextLevel();
});
}