--- id: 5f769702e6e33127d14aa120 title: Part 36 challengeType: 0 dashedName: part-36 --- # --description-- Now align the text to the `right` for the elements with the `price` class. # --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; } .flavor { text-align: left; } --fcc-editable-region-- --fcc-editable-region-- ```