* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial;
  }

  .main-container {
    max-width: 80%;
    margin: 20px auto;
  }

  .main-title {
    display: flex;
    justify-content: center;
  }

  .search-wrapper {
    display: flex;
    justify-content: center;
  }

  .search-bar {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-top: 20px;
    border: 2px solid #087f23 ;
    border-radius: 5px;
    
  }

  .contact-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }

  .contact {
      margin: 50px;
      padding: 10px;
      width: 250px;
      text-align: center;
      border-radius: 5px;
      box-shadow: 0px 10px 10px 3px #42445a;
      background: #087f23;
      color: #fff;
  }

  .image {
    margin-top: 15px;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 2px #000;
}

  .first-last-container {
    margin-top: 15px;
    display: flex;
    justify-content:flex-start;
    align-items: center;
  }

  .first-name {
    margin-left: 10px;
  }

  .last-name {
    margin-left: 5px;
  }

  .email-container {
    display: flex;
    justify-content:flex-start;
    align-items: center;
  }

  .email {
    margin-left: 10px;
  }

  .icons-color {
    color: #000000;
  }

  .footer-desc {
    display: flex;
    justify-content: center;
  }

  @media screen and (max-width: 900px) {
    .main-container {
      max-width: 100%;
    }
  }





