--- id: 5f3cade94c6576e7f7b7953f title: Part 42 challengeType: 0 --- # --description-- Now go ahead and change both the `flavor` and `price` class' widths to be `50%` again. # --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; } .item p { display: inline-block; } --fcc-editable-region-- .flavor { text-align: left; width: 49%; } .price { text-align: right; width: 49%; } --fcc-editable-region-- ```