Paragraphs render well on mobile displays.
But for large displays, it’s worth a little tweak.
Let’s change the paragraph styles for all devices with a display width greater than 480px:
font size should be 14px, vertical padding 20px, horizontal padding 60px.
Use internal scripts.

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>
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
    <title>Height and font</title>
    <style>
        * {
            font-family: monospace;
        }
        h2 {
            text-align: center;
        }
        p {
            font-size: 20px;
            padding: 5px 20px;
        }
    </style>
  </head>
  <body>
    <h2>Facebook</h2>
    <p>Facebook (stylized as facebook) is an American online social media and social networking service based in Menlo Park, California, and a flagship service of the namesake company Facebook, Inc. It was founded by Mark Zuckerberg, along with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dustin Moskovitz, and Chris Hughes.</p>
    <p>The founders of Facebook initially limited membership to Harvard students. Membership was expanded to Columbia, Stanford, and Yale before being expanded to the rest of the Ivy League, MIT, NYU, Boston University, then various other universities in the United States and Canada, and lastly high school students. Since 2006, anyone who claims to be at least 13 years old has been allowed to become a registered user of Facebook, though this may vary depending on local laws. The name comes from the face book directories often given to American university students.</p>
  </body>
</html>