*{
    box-sizing: border-box;
    /* background-color: hsla(300, 100%, 50%, 1); */
}
body{ 
    font: 14px;
    font-family: 'Times New Roman', Times, serif;
    background: hsla(166, 100%, 42%, 0.05);
    background-repeat:no-repeat;
    }
.img_file{
    width: 12em;
    height: 20em;
    grid-row: 1/3;
    grid-column: 1/2;
}
.member_info{
    /* position: relative; */
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center; */
    display: grid;
    grid-gap: 1em;
    padding: 1em;
    justify-content: center;
}
.member_info_name{
    /* position: absolute;
    right: 50%;
    text-align: center; */
    grid-row: 1;
    grid-column: 3/4;
    text-align: left;
}
.member_info_introduction{
    grid-row: 2/3;
    grid-column: 3/4;
    text-align: left;
}
.add_member_info{cursor: pointer; text-align: center; margin: auto;}