Design a Business Card - Design a Business Card

Tell us what’s happening:

objective 30 requires that i add an a alement after a p element. Did exactly that but it wont 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">
        <main>
            <img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="pink flower">
            <p class="full-name">Prestige Zhou</p>
            <p class="designation">Network Engineer</p>
            <p class="company">International</p>
            <hr>
            <p>ipvprestige@gmail.com</p>
            <p>(263) 783700032</p>
            <a href="https://www.instagram.com/ipv.prestige/">Portfolio</a>
            <hr>
            <div class="social-media">
                <h2>Connect with me</h2>
                <a href="https://www.instagram.com/ipv.prestige/">Twitter</a>
                <a href="https://zw.linkedin.com/in/prestige-zhou-748511312">LinkedIn</a>
                <a href="https://zw.linkedin.com/in/prestige-zhou-748511312">GitHub</a>
            </div>
        </main>
    </div>
</body>
</html>
/* file: styles.css */
/* file: styles.css */
body {
  background-color: rosybrown;
  font-family: Arial,sans-serif;
  padding: 20px;
}

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

.business-card {
  width: 300px;
  background-color: burlywood;
  margin: 100px;
  padding: 20px;
  max-width: 500px;
  text-align: center;
  font-size: 16px;
  margin-right: auto;
  margin-left: auto;
}

.profile-image {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;

}

a:hover{
text-decoration:underline!important;}

hr {
  height: 2px;
  border-color: slategray;
  border-style: dashed; border-width: 1px;
}

h2 {
  font-family: Arial;
  font-size: 20px;
}
a{
  text-decoration:none;
}

Your browser information:

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

Challenge Information:

Design a Business Card - Design a Business Card

Hi,
The use of main element inside a div is causing the error.
Happy coding!