I currently have the following code:
.fiftyFiftySection {
background-color: #000;
}
.odometer {
font-size: 3em;
text-align: center;
}
table td {
column-width: 1000px;
text-align: center;
}
@media (max-width: 500px) {
table td {
column-width: 100px;
}
}
<section class="fiftyFiftySection" id="fiftyFiftySection">
<table>
<tr>
<th></th>
<th></th>
</tr>
<tr>
<td>
<img src="https://res.cloudinary.com/piersolutions/image/upload/v1637109327/5050_frfhsy.png"
style="width:400px; height:300px;">
</td>
<td>
<h4 style="color: #ffffff;">Current Estimated Payout</h4>
<!-- <br> -->
<img src="https://res.cloudinary.com/piersolutions/image/upload/v1637361906/dollar-sign-2_a2hsh3.png" alt=""
style="height: 50px; width: 30px;">
<div id="odometer" class="odometer">000000</div>
</td>
</tr>
</table>
</section>
However, there is an issue in the mobile version where the columns do not align properly. I want the image to be on the left and the counter on the right when viewed on a mobile device, but they are not spaced correctly. How can I adjust this for mobile?