section .employees{display:flex;flex-wrap:wrap}section .employees .employee{grid-gap:10px;border:2px solid gray;display:grid;grid-template-areas:"name pic" "position pic";margin-right:20px;margin-top:20px;padding:20px;width:400px}section .employees .employee .name{align-items:flex-end;display:flex;font-weight:700;grid-area:name}section .employees .employee .position{grid-area:position}section .employees .employee img{border-radius:100%;grid-area:pic;height:150px;width:150px}
