The height of the heading <h2> is given in relative units of rem.
Without changing the height of the heading, make it so that its height is 50px.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>rem units</title>
    <style>
      h2 {
        height: 2rem;
      }
    </style>
  </head>
  <body>
    <h2>rem unit is cool!</h2>
  </body>
</html>