--- id: 5f3ef6e05473f91f948724ab title: Part 59 challengeType: 0 dashedName: part-59 --- # --description-- You can change the `font-family` of text, to make it look different the the default font of your browser. Each browser has some common fonts available to it. Change all the text in your `body`, by adding a `font-family` property with the value `sans-serif`. This is a fairly common font that is very readable. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu ``` ```css --fcc-editable-region-- body { background-image: url(https://tinyurl.com/coffee-beans-fcc); } --fcc-editable-region-- h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; padding: 20px; max-width: 500px; } .item p { display: inline-block; } .flavor, .dessert { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```