@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body
{
  background: rgba(100, 200, 150,0.75);
  backdrop-filter: blur(5px);
  font-family: 'Roboto' sans-serif;
}

.wrapper
{
  margin-top: 10%;
}

.wrapper h1
{
  font-family: 'Roboto' sans-serif;
  font-size: 52px;
  margin-bottom: 60px;
  text-align: center;
}

.team
{
  display: flex;
  text-align: center;
  width: auto;
  justify-content: center;
  flex-wrap: wrap;

}

.team .team_member
{
  background: #fff;
  margin: 5px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;
  position: relative;
}

.team .team_member h3
{
  color: goldenrod;
  font-size: 26px;
  margin-top: 50px;
}

.team .team_member p.role
{
  color: #ccc;
  font-size: 12px;
  text-transform: uppercase;
  margin: 12px 0;
}

.team .team_member .team_img
{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.team .team_member .team_img img
{
  width: 100px;
  border-radius: 50%;
  padding: 10px;
}
