@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');

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

body {
    height: 100dvh;
    width: 100dvw;
    font-family: 'Nata Sans', sans-serif;
}

main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.funcionarios {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.perfil {
    padding-block: 40px;
    height: 250px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border-radius: 16px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.info {
    padding-block: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nome {
    font-size: 24px;
    font-weight: 600;
}