Today we need to add styles for the site navigation.
The .nav block should be locked at the very top of the screen.
Its height should be 50px and its width should be the entire browser window.
Every .nav-item element must have 25px spacing. Use the right margin for this.

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>Navigation Practice</title>
  </head>
  <body>
    <div class="nav">
      <a href="https://js.coderslang.com/navigation/217" class="nav-item">
        JS Coderslang
      </a>
      <a href="https://play.google.com/store/apps/details?id=com.coderslang.com&hl=en&gl=US" class="nav-item">
        Android App
      </a>
      <a href="https://apps.apple.com/us/app/coderslang-learn-programming/id1489105103" class="nav-item">
        iOs App
      </a>
    </div>
  </body>
</html>