Design a Business Card - Design a Business Card

Tell us what’s happening:

i cant get to have the no. 40 test checked. please check what is the problem here… Thanks :wink:

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 src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="A flower" class="profile-image"width="150">
        <p class="full-name">Gulshan Kumar Yadav</p>
        <p class="designation">Front-End Web Developer</p>
        <p class="company">Umang</p> <hr>
        
        <p>Email : noemail@gmail.com</p> 
        <p>Phone : 9898989894</p> 
        <a href="https://www.canva.com/Website Builder" class="portfolio-link">Portfolio</a><hr> 
         
        
        <div class="social-media">
        <h2>Connect with me</h2>
        <a href="https://www.youtube.com/">Twitter</a>
        <a href="https://www.facebook.com/">LinkedIn</a>
        <a href="https://www.x.com/">GitHub</a>
    </div>
    </div>

</body>

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

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

.profile-image{
  max-width:100%;
}
.business-card p{
 margin-top:5px;
 margin-bottom:5px;
}


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/148.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-business-card/6690e10ebe2181212abc9652.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @gulshan,

Try targeting only the p element in this selector.

Happy coding

Wow @dhess i was stuck here for half an hour . Thank you so much for your time. I really appreciate it.