#influencer{
  display: flex; flex-direction: row; align-items: center; justify-content: space-around;
  height: 100%;
  padding: 60px 0;
  background: #fff;
  flex-wrap: wrap;
}

.influencer-text h1{
  font-size: 40px;
  line-height: 1.4;
  width: 500px;
}
.influencer-text p{
  width: 600px;
  text-align: justify;
  margin-top: 20px;
}

.influencer-img img{
  height: 400px;
  border-radius: 50%;
}

.influencer-social{
  display: flex; flex-direction: row; 
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.influencer-social a button{
  outline: 0;
  background: transparent;
  border: 1px solid #e67e22;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
}
.influencer-social a button:hover{
  background: #e67e22;
  color: #fff;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px){
  #influencer{
    flex-direction: column;
    gap: 50px;
  }
  .influencer-social{
    justify-content: center;
    padding: 0 20px;
  }
}
@media screen and (max-width: 700px){
  .influencer-text h1{
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    padding: 0 30px;
  }
  .influencer-text p {
    width: 100%;
    padding: 0 60px;
  }
  .influencer-img{
    display: flex; justify-content: center;
  }
  .influencer-img img{
    max-width: 80%;
    height: 80%;
  }
}