Add the code below to your functions.php file in your child theme directory. All CSS in between the style tags will appear in the footer.
function hook_css() {
//Wordpress page ID
if(is_page(97)){ ?>
<style>
.content {max-width: 1080px;}
</style>
<?php
}
}
//add to the footer
add_action('wp_footer', 'hook_css',99);