.developer-section {
  max-width: 800px;
  min-height: 100vh;
  margin: auto;
  padding: 20px 0;
}
.profile-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  width: 100%;
  padding: 20px;
  background: #f3f3f3;
  color: var(--black);
  border-radius: 20px;
  border: 1px solid var(--black);
}
.profile-card .profile-img {
  display: block;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--white);
  cursor: pointer;
}
.profile-card .primary-info h3 {
  font-size: 28px;
}
.profile-card .primary-info p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray);
}
.more {
  margin-top: 15px;
}
.more p{
  color: var(--gray);
}
.more h1{
  padding: 10px 0;
}
.skills-list {
  position: relative;
  padding: 10px 20px;
}
.skills-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 5px;
  height: 100%;
  background: var(--black);
}
.skills-list li {
  display: flex;
  gap: 10px;
  position: relative;
  margin: 10px 0;
  padding: 10px 20px;
  width: fit-content;
  background-color: #f3f3f3;
  border: 1px solid var(--black);
  border-radius: 8px;
}

.skills-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  border: 10px solid var(--black);
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
@media (max-width: 519px) {
  .profile-card {
    justify-content: center;
    text-align: center;
  }
  .primary-info p {
    justify-content: center;
  }
}
