*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgray
}

.container-funcionarios{
    width: 60% ;
    height: 50% ;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    
}

.container-funcionarios div{
    width: 20%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 8px #000;
    font-family: Arial;
}

div img{
    width: 32%;
    border-radius: 50%;
}

h2{
    font-size: 1.5rem;
}