As someone who has 100/100 pages in speed, I can tell you that over-optimizing for speed is probably not worth the frustration that you will encounter troubleshooting. For example, run the Pagespeed test on Wikipedia or on YouTube. These are the best sites, and on YouTube, for example, only 50 points. The real reason you would like to improve these numbers is to provide users with a better experience, because they donโt have to wait for the page to load.
Your above collapsible content is just what is allowed to display, waiting for additional resources to load:
Your page has 4 blocking script resources and 2 blocking CSS resources. This causes a delay in the rendering of your page.
None of the above content on your page can be loaded without waiting for the following resources to load. Try deferring or loading blocking resources asynchronously, or embed critical parts of these resources directly in HTML.
Remove JavaScript visualization lock:
/...-includes/js/jquery/jquery.js?ver=1.11.3
/...s/jquery/jquery-migrate.min.js?ver=1.2.1
/...ghtbox/jquery.touchwipe.min.js?ver=1.4.6
/...ightbox/jquery.lightbox.min.js?ver=1.4.6
Optimize CSS. Delivery:
/wp-content/themes/1000PB/style.css
/...ghtbox/styles/lightbox.min.css?ver=1.4.6
Itโs best to spend your efforts on optimizing their delivery (using async or defer for scripts and style sheets), as they will reduce your overall page rank and damage the ranking of your search engine.
To answer your question, you can check the elements that are at the top of the page, usually everything that can be seen without scrolling down to see their css. Example:
img.attachment-post-thumbnail { border: 1px solid #e6e6e6; padding: 3px; }
So the material is best included in the embedded <style> element in the header, as the browser does not have to wait for style.css to load before it can show the page to users.
If you need help hacking a Wordpress theme to do certain things, to make it faster, for example, mini scripts, asynchronous scripts, using defer , disabling emoji, etc., just ask in the comments or send another question and we will happy to help.

I recommend testing on other sites to better understand what is happening. I recommend Webpagetest.org and using the Waterfall chart Iโll tell you which resources take the longest:

You can also use tools to help with this:
CSS tricks: authorial critical over-fold CSS
High Quality CSS Tools (Above)