*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: linear-gradient(rgba(73, 73, 119, 0.37), rgba(73, 73, 119, 0.37)), url(back.jpg);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.wrapper{
    margin-top: 10%;
}

.wrapper h1{
    color: #ccc;
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
}

.team{
    display: flex;
    text-align: center;
    width: auto;
    justify-content: center;
}

.team .team_member{
    background: #5e5b988f;
    margin: 5px;
    margin-bottom: 50px;
    width: 300px;
    padding: 20px;
    line-height: 20px;
    color: #ccc;
    position: relative;
}

.team .team_member h2{
    color: #ccc;
    font-size: 26px;
    margin-top: 50px;

}

.team .team_member p.role{
    color: #ccc;
    font-size: 12px;
    text-transform: uppercase;
    margin: 12px 0;
}
button{
    width: 200px;
    padding: 10px 10px;
    text-align: center;
    font-size: 20px;
    margin: 0;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid rgba(120, 120, 168, 0.63);
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    overflow: hidden;
}
span{
    background: rgba(120, 120, 168, 0.63);
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transition: 0.3s;
}
button:hover span{
    width: 100%;
}
button:hover{
    border: none;
}