I dont get this

i dont know whats wrong here. some help would be appreciated

Your code so far


<style>

  div{ 
    border-radius: 20px;
    width: 70%;
    height: 400px;
    margin: 50px auto;
    background: linear-gradient(35deg, #CCFFFF ,#FFCCCC);
  }

</style>

<div></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-gradual-css-linear-gradient

It is being finicky, move the comma so it is right after the hex color

background: linear-gradient(35deg, #CCFFFF ,#FFCCCC);
background: linear-gradient(35deg, #CCFFFF, #FFCCCC);