body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightseagreen;
    height: 100vh;

}
.container{
    width: 400px;
    height: 400px;

    background: gray;
    border-radius: 20px;
    box-shadow: 1px 1px 3px 3px rgb(243, 223, 223),
    -2px -2px 30px 30px lightblue
    ;
    
   
    
}

.body-man{
    display: flex;
    width: 200px;
    height: 200px;
    justify-content: center;
    margin: auto;
}


.body-man img{
    width: 100%;
    object-fit: cover;
    padding: 20px;
    

    
    border-radius: 200px;
}
.paragraf{
    text-align: center;
    font-weight: bold;
    color: white;
}
p{
    text-align: center;
    color: black;
    font-size: 20px;
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.footer span{
    margin: 10px;
    font-size: 40px;
}