I'm completely confused as to why the background color isn't changing despite investing a significant amount of time into it:
<input type="button" class="front-consultation-btn" value="Get A Free Consultation">
<script>
$('.front-consultation-btn').animate({ backgroundColor: '#FF0000', width: 400 }, 500);
</script>
Can someone please explain why only the width property is being changed here?