#profile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: white;
}

.profile-image {
  margin-right: 40px;
}

.profile-image img {
  max-width: 450px;
  height: auto;
  border-radius: 50%;
}

.profile-name {
  font-size: 40px;
  font-weight: bold;
  margin: 0px 0px 0px;
}

.profile-title {
  font-size: 18px;
  color: #f09f4d;
  margin: 0px;
}

.profile-location {
  font-size: 18px;
  color: #fee3b0;
  margin: 0px 0px 20px;
}

.profile-description {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 700px) {
  #profile {
    flex-direction: column;
  }

  .profile-image {
    margin-right: 0;
    align-self: flex-start; /* Align the image to the top left */
  }

  .profile-image img {
    max-width: 120px;
    width: 20vmin;
  }

  .profile-name {
    font-size: 30px;
  }
}
