Design a Business Card - Design a Business Card

Tell us what’s happening:

help me with test 41, it is not passing , I have set the text decoration to none but still it is not passed

Your code so far

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

<head>
    <meta charset="utf-8">
    <title>Business Card</title>
</head>
<link rel="stylesheet"href="styles.css">
<body>
<div class="business-card">
<img class="profile-image"src="https://i.pinimg.com/736x/1a/85/72/1a8572e6563b6d1aa031fd60d9b27780.jpg" alt='profile image'> 
<p class="full-name">IQRA IFTIKHAR</p>  
<P Class="designation">Software Developer</P> 
<p class="company">@FreeCodeCamp</p>
<hr>
<p>Email:example@gmail.com</p>
<p>Phone no.:555-55555555</p>
<a class="portfolio-link" href="https://www.abdulbasit.cloud/">Portfolio</a>
<hr>
<div class="social-media">
<h2>Connect with me</h2>
<a class="links" href="https://github.com/abdulbasit145">Twitter</a>
<a class="links" href="https://github.com/abdulbasit145">LinkedIn</a>
<a class="links" href="https://github.com/abdulbasit145">GitHub</a>

</div>
</div>
</body>

</html>
/* file: styles.css */
body{background-color:rosybrown;
font-family:Arial,sans-serif;
}
.business-card{background-color:rgb(249, 184, 195);
padding:20px;
width:300px;
margin-top:100px;
text-align:center;
font-size:16px;
margin-left:auto;
margin-right:auto;}
.profile-image{max-width:100%;}
p{margin-top:5px;
margin-bottom:5px;}
.full-name{font-size:25px;}
.links{color:black}
a:hover{color:rgb(255, 107, 132);
}
hr{color:rgb(255, 107, 132);
   border-color:rgb(255, 107, 132);
   border-width:3px}
.portfolio-link{color:black;
text-decoration:none;}
.social-media 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/143.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

How could you ensure that all links on this page will have no text decoration?

Wherever they are located?

  1. All links on the page should not be underlined.
  1. The links of the page should have no underline.