Design a Business Card - Design a Business Card

Tell us what’s happening:

What mistake I made? I stuck at 32. Could you help me!

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">
<p>Buy clothes</p>
<img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="pink flower">
<p class="full-name">Helen Getachew</p>
<p class="designation">buy cloth</p>
<p class="company">ethiocloth</p>
<hr>
<address>
<p>Email:<a href="emailto: kalkidan@gmail.com">kalkidan@gmail.com</a></p>
<p><a href="tell:+25199">251999</a></p>
<a href="freecodecamp.org">Portfolio</a>
</address>
<a href="free.com">Portfolio</a>
<hr>
  </div>
  <div class="social-media"> 
    <h2>Connect with me</h2>
    <a href="twiter.com">Twitter</a>
    <a href="linkin.com">LinkedIn</a>
    <a href="github.com">GitHub</a>
  </div>
</body>

</html>
/* file: styles.css */
body {
  background-color: rosybrown; 
  font-family: Arial, sans-serif
}
p { 
  margin: 5px;
}
.business-card {
  width:300px;
background-color: skyblue;
  padding: 20px;
  margin: 100px auto 0;
  text-align: center;
  font-size: 16px;
}
.profile-image {
  max-width: 100%; 
}
a{
  color: brown;
  text-decoration: none;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1

Challenge Information:

Design a Business Card - Design a Business Card

Test #32 is failing because the .social-media element doesn’t come after the hr element.
Check that closing tag </div> in between and make sure it’s placed correctly.