I am struggling to get the List centered beneath "Contact Me" and the hr tag. Both of those elements are perfectly centered in the column, but the list and icons are aligned to the left. Ideally, I would like them to be in the center like everything else. I've experimented with justify-content and text-align, but I might not be applying them correctly.
Imagine I have no CSS knowledge and guide me through this process haha.
Thank you in advance!
<Cell col={6}>
<h2>Contact Me</h2>
<hr/>
<div className="contact-list-con">
<List>
<ListItem>
<ListItemContent style={{fontSize:'2.13vmax', fontFamily: 'Julius Sans One'}}>
<Icon style={{fontSize:'2.13vmax'}}>perm_phone_msg</Icon>
<a href="tel:">888-888-8888</a>
</ListItemContent>
</ListItem>
<ListItem>
<ListItemContent style={{fontSize:'2.13vmax', fontFamily: 'Julius Sans One'}}>
<Icon style={{fontSize:'2.13vmax'}}>email</Icon>
<a href="mailto:"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="422a272e2e2d022a272e2e2d352d302e266c212d2f">[email protected]</a></a>
</ListItemContent>
</ListItem>
</List>
</div>
</Cell>