Design a Business Card - Design a Business Card

Tell us what’s happening:

Hi, stuck on point 30 of this project. the code seems fine to me. Please help!

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">Matilda</p>
        <p class="designation">Software Developer</p>
        <p class="company">Mata Software</p>
        <hr>
        <p>mata@gmail.com</p>
        <p>046576598767</p>
        <a href="https://www.zella.com.au/what-we-do">Portfolio</a>
        <hr>
        <div class="social-media">
            <h2>Connect with me</h2>
            <a class="social-link" href="https://www.zella.com.au/what-we-do">Twitter</a>
            <a class="social-link" href="https://www.zella.com.au/what-we-do">LinkedIn</a>
            <a class="social-link" href="https://www.zella.com.au/what-we-do">GitHub</a>
        </div>
    </main>
</div>
</body>

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

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

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

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

a{
  text-decoration: none;  
}

a:hover{
  text-decoration: underline;
}

.social-link {
  margin: 5px;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

Try delete the main.Actually the steps do not tell you to add it.