 Hi I got a problem with aligning 3 icons. I want to align them but everytime I try something like this the first icon starts from the middle of the page but I want there the 2nd icon.
Hi I got a problem with aligning 3 icons. I want to align them but everytime I try something like this the first icon starts from the middle of the page but I want there the 2nd icon. 
.item-icon {
  width: 10%;
  position: relative;
  display: inline-block;
  text-align: center;
  left: 50%;
  top: 50%;
}
.item-image {
  font-size: 70px;
}<div class="plan">
  <div class="item-icon">
    <div class="item-image">
      <i class="far fa-lightbulb"></i>
    </div>
    <div class="item-text">
      <p></p>
    </div>
  </div>
  <div class="item-icon">
    <div class="item-image">
      <i class="fas fa-code"></i>
    </div>
    <div class="item-text">
      <p></p>
    </div>
  </div>
  <div class="item-icon">
    <div class="item-image">
      <i class="fas fa-upload"></i>
    </div>
    <div class="item-text">
      <p></p>
    </div>
  </div> 
     
     
     
    