*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: auto;
   
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100vh;
    
   
    
}
 img{
    border-radius: 100%;
  
    width: 120px;
    height: 150px;
    
}
.card{
    box-shadow: 0  2px 6px black;
    border-radius: 8px;
    height: 220px;
    width: 200px;
    display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   gap: 5px;
}

.container h1{
   font-size: small; 
   font-weight: 900;
}
.container p{
    font-size: x-small;
}