Design a Business Card - Design a Business Card

Tell us what’s happening:

please i need help, i have my div element in place but code won’t pass

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://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="flower">
    <p class="full-name">Abidemi Olatigbe</p>
    <p class="designation">CEO</p>
    <p class="company">Oba's Art</p>
    <hr>
    <p>oba2692@gmail.com</p>
    <p>08123456789</p>
    <a class="portfolio-link" href="https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-business-card/design-a-business-card">Portfolio</a>
    <hr>
    </div>
    <div class="social-media"><h2>Connect with me</h2>
    <a href="https://x.com/company323061">Twitter</a>
    <a href="https://www.linkedin.com/in/abidemi-olatigbe-38b191266?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">LinkedIn</a>
    <a href="https://github.com/abidemiwork-bit">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;
}
a:hover {
  text-decoration: underline;
}
.business-card{
  width: 300px;
  background-color: brown;
  padding: 20px;
  margin-top: 100px;
  text-align: center;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}
.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

are sure it needs to go after .business-card?

i don’t understand you please

this is .business-card, you added .social-media after this, are you sure this is correct? Consider user story 5

i have the div with business card has the attribute and all elements are in it …i’m lost

Are you sure that the .social-media div is in it?

i moved the div containing social media inside the previous div and it passed… thanks