Design a Business Card - Design a Business Card

Tell us what’s happening:

I keep getting this error message: “33. After the second hr element, there should be a div element with a class attribute with a value of social-media.”, but I’m sure I have the div in the code. any help? thanks

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 src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" class="profile-image" alt="profile image">
        <p class="full-name">el-Chico</p>
        <p class="designation">Software Developer</p>
        <p class="company">ALC Logistics</p>
        <hr>
        <p>chico@yahoo.com</p>
        <p>5516348654134</p>
    </div>
    <a href="https://cdn.freecodecamp.org/curriculum/labs/flower" class="portfolio-link">Portfolio</a>
    <hr>
    <div class="social-media">
        <h2>Connect with me</h2>
        <a href="https://www.facebook.com/photo/?fbid=122264199116166415&set=a.122110773608166415">Twitter</a>
        <a href="css-tricks.com/almanac/rules/k/keyframes/">LinkedIn</a>
        <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Animations/Using">GitHub</a>
    </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: teal;
  padding: 20px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  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/142.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

it’s not inside .business-card tho

that fixed it. i appreciate it, thanks