Is there a way to only show HTML after the CSS in the head in loaded?

I have a link that points to another page:

<head>
   <link rel="stylesheet" href="style.css">
</head>
<body>
  Hello World
</body>

This page shows HTML before the styles from style.css are loaded, so the users see the unstyled content briefly. Is there a way to tell Turbo to only show HTML after the styles are loaded (which is the normal behaviour without turbo)?