--- id: 5f769541be494f25449b292f title: Part 34 challengeType: 0 dashedName: part-34 --- # --description-- Using your new `flavor` class as a selector, set the `text-align` property's value to `left`. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu ``` ```css body { background-image: url(https://tinyurl.com/coffee-beans-fcc); } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } --fcc-editable-region-- --fcc-editable-region-- ```