#membro {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#membro > div{
    display: flex;
    width: 100%;
    
}

#membro > div > ul{
    display: flex;
    width: 100%;
    padding: 0;
    justify-content: space-between;
    gap: 2%;
    flex-wrap: wrap;
    margin-bottom: 50px;
    flex-wrap: nowrap;
}


#membro > div > ul> li{
    color: white;
    list-style: none;
    border: 1px white solid;
    display: flex;
    width: 400px;
    height: 500px;
    justify-content: flex-start;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

#membro > div > ul> li> div{
    display: flex;
    flex-direction: column;
}


#membro-texto{
    height: 75%;
}

#membro-butao{
    height: 25%;
    justify-content: center;
}


#membro > div > ul> li> div> p{
    text-align: justify;
}

#membro > div > ul> li> div> button{
    width: 216px;
    height: 46px;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px white solid;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

#membro > div > ul> li> div> button:hover{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transition: 0.25s;
}

