.profile-info {
  margin-bottom: 25px;
}

.profile-img {
  border-radius: 50%;
  object-fit: cover;
  width: 220px;
  height: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
  max-width: 350px;
}

@media (max-width: 600px) {
  .profile-img {
    width: 160px;
    height: 160px;
  }
}

.profile-img-section {
  position: relative;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .profile-img-section {
    margin-left: 60px;
  }
}

.profile {
  text-align: center;
}

.profile-title {
  font-weight: 400;
  font-size: 48px;
  margin: 80px 0px 0px;
  color: var(--primary-color);
  /* font-family: "Noto Sans", sans-serif; */

}

.profile-details {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 450px;
  margin: 20px auto 50px;
}

.profile-btn {
  background-color: var(--primary-color);
  color: black;
  border: none;
  font-size: 20px;
  padding: 0.5em 1em;
  border-radius: 7px;
  cursor: pointer;
}

.profile-btn:hover {
  filter: brightness(130%);
}

.somethingspecial {
  color: var(--secundary-color);
}

.somethingspecial:hover {
  color: var(--secundary-color);
  filter: brightness(0.7);
}

@media (min-width: 950px) {
  .profile-info {
    margin-bottom: 0px;
  }

  .profile-img-line {
    background-color: var(--secundary-color);
    height: 15px;
    position: absolute;
    width: 00%;
    right: 0;
    bottom: 0;

  }



  .profile {
    text-align: left;
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
  }

  .profile-title {
    font-size: 68px;
  }

  .profile-details {
    font-size: 18px;
    margin: 30px 0;
  }

  .profile-btn {
    font-size: 20px;
  }
}