This currently only applies the styles on focus, but not on hover: ``` JS const Component = styled.div` background-color: blue; &:hover, &:focus { background-color: red; } `; ```