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

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

body{
  background: #fafafa;
  font-family: 'Josefin Sans', sans-serif;
}

.wrapper{
  margin-top: 50px;
}

.wrapper h1{
    color:  #6134b6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  margin-bottom: 50px;
  text-align: center;
}

p{
    text-align: center;
}

.team{
  display: flex;
  justify-content: center;
  width: auto;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member{
  background: #fff;
  border-style: groove;
  border-color: #6134b6;
  margin: 5px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;  
  position: relative;
  font-size: 12px;
  
  border-radius: 20%;
}

.team .team_member2{
    background: #fff;
    border-style: groove;
    border-color: #6134b6;
    margin: 5px;
    margin-bottom: 50px;
    width: 300px;
    padding: 20px;
    line-height: 20px;
    color: #8e8b8b;  
    position: relative;
    font-size: 12px;
    border-top-left-radius: 20%;
  }

.team .team_member h3{
  color:  #6134b6;
  font-size: 20px;
  margin-top: 20px;
}

.team .team_member p.role{
  color: rgb(207, 8, 8);
  margin: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.team .team_member .team_img{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-style: groove;
  
  border-color:  #6134b6;
}

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