Design a Business Card - 33

Tell us what’s happening:

It doesn’t tick number 33, where it says type “Connect with me” into a h2 element. I cannot see anything wrong with my code

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Business Card</title>
    <link rel='stylesheet' href='styles.css'>
</head>

<body>
    <div            class='business-card'>
        <img class='profile-image' src='https://meatsmith.com.au/cdn/shop/products/mcgannj-meatsmith-4230_2000x.jpg?v=1599719318' alt='A pile of lemons'>
    
    <p class='full-name'> Lemon Rose
    </p>

    <p class='designation'>
        Manager
    </p>

    <p class='company'>
        Lemony Fragances
    </p>

    <hr>

<p>lemonyfragrances@gmail.com</p>

    <p>5366676355</p>

    <a href=''>Portfolio</a>

    <hr>

    <div class='social-media'>

        <h2>
            Connect with me
        </h2>

        <a href='https://meatsmith.com.au/cdn/shop/products/mcgannj-meatsmith-4230_2000x.jpg?v=1599719318'>Twitter</a>
        <a href='https://meatsmith.com.au/cdn/shop/products/mcgannj-meatsmith-4230_2000x.jpg?v=1599719318'>LinkedIn</a>
        <a href='https://meatsmith.com.au/cdn/shop/products/mcgannj-meatsmith-4230_2000x.jpg?v=1599719318'>GitHub</a>
    </div>

    </div>
</body>

</html>
/* file: styles.css */
body {
  background-color:rosybrown;
  font-family: Arial,sans-serif;
}

p {
  margin-top:5px;
  margin-bottom:5px;
}

a {
  text-decoration: none;
}

.business-card {
  width:300px;
  background-color:rgb(245,225,190);
  padding:20px;
  margin-top:100px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  font-size:16px;
}

.profile-image{
  max-width:100%;
}

Your browser information:

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

Challenge Information:

Design a Business Card - Design a Business Card
https://www.freecodecamp.org/learn/full-stack-developer/lab-business-card/design-a-business-card

try making the text the only thing inside the element, remove extra spaces