* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-size: 80px;
  color: ivory;
  text-align: center;
  font-family: cursive;
}
.our_team {
  width: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.our_team .team_member {
  width: 400px;
  margin: 5px;
  background: #fff;
  padding: 25px 15px;
}
.our_team .team_member .member_img {
  background: #e9e5fa;
  max-width: 190px;
  width: 100%;
  height: 190px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 5px;
  position: relative;
  cursor: pointer;
}
.our_team .team_member .member_img img {
  width: 100%;
  height: 100%;
}
.our_team .team_member h3 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 2px;
  margin: 15px 0 0px;
}
.our_team .team_member span {
  font-size: 15px;
}
.our_team .team_member p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
}
.our_team .team_member .member_img .social_media {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.65);
  width: 95%;
  height: 95%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  transition: all 0.5s ease;
}
.our_team .team_member .member_img .social_media .item {
  margin: 0 10px;
}
.our_team .team_member .member_img .social_media .fab {
  color: #8c7ae6;
  font-size: 20px;
}
.our_team .team_member .member_img:hover .social_media {
  transform: scale(1);
}
.button {
  background-color: #4caf50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.button2:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
article {
  color: snow;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
