How can I remove the footer on mobile devices?

I’d like to remove the footer from mobile devices. Any help would be appreciated.

https://superspeedgolf.com/account/login

@Knomad

Please add the following CSS under Online Store → themes → edit → theme.scss.liquid under assets folder

@media only screen and (max-width: 600px) {
   div#shopify-section-footer {
 display: none !important;
}
}