#work_and_workmates {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
}

#work_and_workmates .theworkmate {
    display: grid;
    place-items: center;
    position: relative;
}

#work_and_workmates .theworkmate .picdiv {
    height: 10vw;
    width: 10vw;
}

#work_and_workmates .picdiv:hover {
    cursor: pointer;
}

#work_and_workmates .theworkmate .picdiv img {
    height: 10vw;
    width: 10vw;
    object-fit: cover;
    border-radius: 50%;
}

.popdiv {
    display: none;
    /* position: absolute;
        right: 0;
        bottom: 0; */
    padding: 5px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 1);
    font-size: small;
    color: white;
    text-align: center;

}

#work_and_workmates .hotpink {
    color: rgba(255, 0, 102, 1);
    font-weight: bold;
}

#work_and_workmates .hotpink:hover {
    color: purple;
}