Help!"Make Typography Responsive"

Tell us what’s happening:
can anyone tell me what i did wrong here? Thank you.

Your code so far


<style>
  p{
      vmin: 75vmin;
  }
  h2{
      vw: 80vw;
  }
</style>

<h2>Importantus Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus quis tempus massa. Aenean erat nisl, gravida vel vestibulum cursus, interdum sit amet lectus. Sed sit amet quam nibh. Suspendisse quis tincidunt nulla. In hac habitasse platea dictumst. Ut sit amet pretium nisl. Vivamus vel mi sem. Aenean sit amet consectetur sem. Suspendisse pretium, purus et gravida consequat, nunc ligula ultricies diam, at aliquet velit libero a dui.</p>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/make-typography-responsive

It says to apply the units to a property called width, but you have assigned it to the unit itself

Your h2 tag should have a width of 80vw.

Your p tag should have a width of 75vmin.

Your challenge says:
Set the width of the h2 tag to 80% of the viewport’s width and the width of the paragraph as 75% of the viewport’s smaller dimension.

<style>
 h2 {
      width: 80vw;
  }
p {
      width: 75vmin;
  }
</style>