Use the CSS Transform scale Property to Scale an Element on Hover not working?

Tell us what’s happening:
I have no idea why this is not getting accepted i have reset the code several times and it still won’t take what am I doing wrong plus checked with the video too to see if any trouble-shooting please help hope there is no bug here . Tia

Your code so far


<style>
  div { 
    width: 70%;
    height: 100px;
    margin:  50px auto;
    background: linear-gradient(
      53deg,
      #ccfffc,
      #ffcccf
    );
  }

  div: hover {
  transform: scale (1.1); 
  }
  
</style>

<div></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-scale-an-element-on-hover/

You have two spaces that shouldn’t be there.

div:hover {
  transform: scale(1.1); 
}

Edit: some clarification.

The :hover pseudo-class is on an element:
div:hover.

It is not a descendant of the element:
div :hover

Any CSS using function notation someFunction() has the parentheses next to the function name.

scale()
not
scale ()