* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

body {
  background-color: black;
}

.social-links-profile-container {
  margin: 5rem;
  width: 384px;
  height: 620px;
  background-color: #1f1f1f;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
}

.avatar-img img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-top: 2rem;
}
.profile-text {
  text-align: center;
}
.profile-text h1 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-top: 1.5rem;
}

.profile-text h4 {
  color: #c5f82a;
  font-size: 14px;
  margin-top: 5rem;
}

.profile-text p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 1.5rem;
}

.links-menu li {
  list-style-type: none;
  width: 304px;
  height: 45px;
  border-radius: 8px;

  text-align: center;
  margin: 1rem 0rem;
}
.links-menu li a {
  background-color: #333333;
  text-decoration: none;
  color: white;
  width: 304px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  transition: all.2s ease-in;
}

.links-menu li a:hover {
  background-color: #c5f82a;
  color: #1f1f1f;
}
.social-links-profile-container {
  margin-top: 1.5rem;
}

/*


media Queries


*/

@media scree and (max-width: 500px) {
  .social-links-profile-container {
    width: 90%;
    height: 620px;
  }

  .links-menu li a {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
