Trying to eliminate the empty space displayed below the footer in mobile mode, and ensure it stretches to fill the width automatically. I have included some script-related code for reference, but omitted it as it is more logic-based and not design-related.
Here is the CSS code snippet I am utilizing:
<style>
.button {
background-color: deepskyblue;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
cursor: pointer;
margin: 10px 25px 0px;
}
/* Additional styles go here */
</style>
Click here for a visual representation.