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

body{
    background-color: gainsboro;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 30px;
    
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

div{
    background-color: #FFF5;
    width: 180px;
    height: 200px;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    
}

div img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
   
}

div p{
    display: flex;
    justify-content: center;
    align-items: center;
}

div span{
    display: flex;
    justify-content: center;
    align-items: center;
    
}