Can someone help me troubleshoot this HTML5 snippet? The LI elements are not aligning properly and I can't figure out why Item 1 is lower than Item 2. I need them to line up on the same level. Any suggestions would be greatly appreciated.
<!DOCTYPE html>
<html>
<body style="font-size: 2em; font-family: Arial, Helvetica, sans-serif;">
<div style="column-count: 2;width: 50%;margin: 0 auto; vertical-align: middle;">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
</body>
</html>