@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans');

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

.wrapper{

}

.wrapper h1{
  font-size: 52px;
  margin-bottom: 60px;
  text-align: center;
}
.Do a{
	text-decoration:none;
	font-size:20px;
	line-height:80px;
}
.team{
  display: flex;
  justify-content: center;
  width: auto;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member{
  background: #e5e5e5;
  margin: 5px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;  

  position: relative;
}

.team .team_member h3{
  color: #81c644;
  font-size: 20px;
  margin-top: 5px;
}

.team .team_member p.role{
  color: #aba9a9;
  margin: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.team .team_member .team_img{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #fff;
}

.team .team_member .team_img img{
  width: 100px;
  height: 100px;
  padding: 5px;
}