*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --nome: attr(subtitle);
    --cargo: attr(subtitle)
}
body{

    height: 100vh;
}
.funcionarios{
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    display: flex;
    gap:32px ;
    justify-content: space-between;
    height: 100%;
 
}
.imagem{
    display: flex;
    flex-direction: column;
   box-shadow: .03px .03px .03px .03px  black;
}
.imagem img{
    border-radius: 50%;
    width: 300px;
    height: 400px;
}
.imagem h1{
    font-size: 1.5rem;
    text-align: center;
}
.imagem p{
    font-size: 1rem;
    text-align: center;
}