There’s no inbuilt option to modify the container size. Though, custom CSS can be added to modify the theme layout as required.
If you mean increasing the size of the pages, you can add this CSS to the customizer:
#page .site-main { max-width: none; }
This will increase the size of all the Pages on the site to 1140px.
If you want to further increase the size of the main container, you can modify it by adding this CSS:
#page.site { max-width: 1140px; }
(replace 1140
with the width you want)
Can help you better if you give some more details about your requirement.