To those who have stumbled upon my previous post on this topic, I'm revisiting the issue with a new perspective because it presents a slightly different challenge, but falls into the same category.
It appears that aligning text below images is causing chaos when attempting to format it correctly. Below is an image of the page without any text under the images: View Image of the Crew Page
Here is the code for the crew page, prior to adding any text:
<section id="crew">
<h1 style="color:#fff">Crew</h1>
<br>
<div style="justify-content:center" class="container5">
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<br><br><br><br><br>
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
</div>
</section>
Now take a look at the image after trying to integrate text under the images: View Image of the Crew Page after Text Insertion
Below is the updated code for the section following the addition of text:
<section id="crew">
<h1 style="color:#fff">Crew</h1>
<br>
<div style="justify-content:center" class="container5">
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<figcaption>Some Text</figcaption>
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<figcaption>Some Text</figcaption>
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<figcaption>Some Text</figcaption>
<br><br><br><br><br>
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<figcaption>Some Text</figcaption>
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<figcaption>Some Text</figcaption>
<img hspace="20" class="crew grow" src="http://nexuscoding.net/5h0GIcqwYiXafUkKEGYy.png">
<figcaption>Some Text</figcaption>
</div>
</section>
Clearly, introducing text has caused unforeseen issues, and I can't quite pinpoint why this is happening. Any insights would be greatly appreciated. Thank you for taking the time to read through the post.