* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100vh;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400, 600, 700;
  font-style: normal;

  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link-card {
  width: clamp(250px, 95%, 350px);
  background-color: hsl(0, 0%, 12%);
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  text-align: center;
  border-radius: 10px;

  .profile-img .avtar-dp {
    width: 80px;
    border-radius: 100%;
  }

  .profile-info {
    h2 {
      margin-bottom: 5px;
    }
    h5 {
      font-size: 14px;
      color: hsl(75, 94%, 57%);
    }
  }

  .job-detail {
    p {
      font-size: 14px;
      color:hsl(0, 3%, 78%);
    }
  }

  .links-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
    width: 100%;
    a {
      width: 100%;
      padding: 15px;
      color: hsl(0, 0%, 100%);
      background-color: hsl(0, 0%, 20%);

      display: block;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      border-radius: 10px;
    }

    a:hover{
        color: hsl(0, 0%, 8%);
        background-color: hsl(75, 94%, 57%);
        font-weight: 800;
        transition: background-color 0.2s ease-out,color 0.2s ease-in;
    }
  }
}

@media screen and (max-width: 375px) {
  .social-link-card{
    width: 90%;
    padding: 35px 10px;
  }
}
