I would like to color a word in a sentence that is being rendered in quarto to HTML. In R Markdown I would just add a css tag but I don't see how to do that in quarto. The quarto documentation says that it is possible to write inline css but there is no example. There is a hyperlink that shows a R Markdown example:
```{css, echo=FALSE}
body {
color: red;
}
```
When I do that, quarto displays the code as a code block and does not use the CSS.
How do I add a CSS code block to a quarto document?