--- id: 5f76967fad478126d6552b0d title: Part 35 challengeType: 0 dashedName: part-35 --- # --description-- Next, you want to align the price to the right. Add a class named `price` to your `p` element that has `3.00` as its text. # --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; } ```