While going through the Angular tutorial at https://angular.io/tutorial/toh-pt1#selector, one particular sentence caught my attention: "The CSS element selector, 'app-heroes', matches the name of the HTML element that identifies this component within a parent component's template." This statement left me puzzled as I couldn't find any HTML element with the name app-heroes or anything similar. How does this type of CSS selector work? I have my heroes components defined in a folder structure /src/app/heroes. Could it be constructing a name based on "parentfolder-folder"? And what exactly is being targeted by the css element selector?