Design a Business Card - Design a Business Card

Tell us what’s happening:

i dont seem to know why im not passing this steps
what am i doing wrong?

Your code so far

html

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Business Card</title>
    <link rel="stylesheet" href="styles.css">
    <style>
    body {
        background-color:rosybrown;
        font-family: Arial sans-serif;
        }
  p {
      margin-top:5px;
      margin-bottom:5px;

      }
  .business-card {
    width: 300px;
    background-color: red;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    margin: 100px auto 0;
  }
  .profile-image {
       max-width: 100%;
  }

  a {
      text-decoration: none; 
  }
</style>
</head>

<body>
  <div class="business-card">
      <img  src= "https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="pink flower" class="profile-image">
      <p class="full-name">Sheila</p>
      <p class="designation">Madame Super Brain</p>
      <p class="company">Drip on Kicks</p>
      <hr>
      <p>Email address</p>
      <p>phone number</p>
      <a href= "https://www.portfoliobox.com/?s=googled&gad_source=1&gad_campaignid=22642349728&gbraid=0AAAAADsZOz9jSuKTrwhiDFDlJ6mMGpVCO&gclid=Cj0KCQjwmK_CBhCEARIsAMKwcD6gpBG7R-0YPG2ZZZ0Kqt7R2oBWrH4d-5N4Fdd9nsQju88ZKpE7SBUaAqjZEALw_wcB" >Portfolio</a>
      <hr>
      <div class="social-media">
          <h2>Connect with me</h2>
          <a href="https://x.com/login?lang=en-gb">Twitter</a>
          <a href="https://www.linkedin.com/login">LinkedIn</a>
          <a href="https://github.com/dashboard">GitHub</a>
      </div>
  </div>
</body>

</html>

/* file: styles.css */

Your browser information:

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

Challenge Information:

Design a Business Card - Design a Business Card

Hi. Do you have any cSS to post as well?

There are quite a few tests failed. Please say which tests in particular you would like help with and talk through what you have tried.