i need your help. I have profile page, i researched lots of websites, but i can't found, can you help me? I need to center all all of the items, and my image has to be like ANGELA YU (image of the top, you can see). Please help
<div className="asd">
<img alt="123" src={asd}></img>
<div className="top-container">
<div></div>
<div className="user-profile-img">
<img alt="profileImg" src={user.photoURL}></img>
</div>
</div>
<div className="middle-container">
<p>Your email: [email protected]</p>
<p>Your user id: 123213213213</p>
<p>Your display name: ASDSADASDSA</p>
</div>
</div>

text-align: centerif you have100%width, otherwise usemargin: 0 auto;or if you want to center both vertically and horizontally, useflexboxproperties (ref)