--- id: 5f3ef6e0e9629bad967cd71e title: Passo 60 challengeType: 0 dashedName: step-60 --- # --description-- Você pode adicionar um valor de fallback para a font-family adicionando outro nome de fonte separado por uma vírgula. Os fallbacks são usados em instâncias onde a fonte inicial não é encontrada ou não está disponível. Adicione a fonte de fallback `serif` após a fonte `Impact`. # --hints-- Você deve adicionar `serif` como fallback para a fonte `Impact`. ```js const fontFamily = new __helpers.CSSHelp(document).getStyle('h1, h2')?.getPropertyValue('font-family'); assert(fontFamily === 'Impact, serif'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); font-family: sans-serif; } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; padding: 20px; max-width: 500px; } --fcc-editable-region-- h1, h2 { font-family: Impact; } --fcc-editable-region-- .item p { display: inline-block; } .flavor, .dessert { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```