Design a Business Card - Design a Business Card

Tell us what’s happening:

I dont get Error 18 here. My code should be correct: I got 2 hr elements and on the second one follows the div with the social-media class. that is literaly just what the task asks for. I just dont get it?

Your code so far

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

<head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="styles.css">
    <title>Business Card</title>
</head>

<body>
    <div class="business-card">
        <img class="profile-image" src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="pink, blooming flower">

        <p class="full-name">Peter Lustisch</p>
        <p class="designation">The Greenthumb</p>
        <p class="company">Flower Power</p>
        <hr>
        <p>peter.lustisch@green-bomboclat.net</p>
        <p>+49 517 76721224696723</p>
        <a class="portfolio-link" href="https://social.mtdv.me/articles/peter-lustisch">Portfolio</a>
        <hr>
    </div>
    <hr>         
    <div class="social-media">
        <h2>Connect with me</h2>
        <a href="https://www.x.com">Twitter</a>
        <a href="https://www.linkedin.com">LinkedIn</a>
        <a href="https://www.github.com">GitHub</a>
    </div>
</body>
</html>
/* file: styles.css */
body {
  background-color: rosybrown;
  font-family: Arial, sans-serif;
}

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

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

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/147.0.0.0 Safari/537.36 OPR/131.0.0.0

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

Welcome to the forum @hidestudiosceo!

This should all be inside the .business-card div minus the extra hr element.

Happy coding!