**Desired code** ```tsx import { css } from "styled-components" function Component() { return ( Title Description ) } const styledStyle = css` background: red; &:hover { background: blue; } ` ```