.profile-photo {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.profile-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00ff88;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
  transition: transform 0.3s ease;
}

.profile-photo img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .profile-photo {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 1.5rem auto 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .profile-photo img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 900px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-photo {
    order: 1;
  }

  .content {
    order: 2;
    text-align: center;
  }
}


.about-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  border: 2px solid #00ff88;
}
