I see the problem. The huge empty space is caused by the max-width: 100%;
attribute on the .about-me div
. This attribute tells the browser to set the div
's width to 100%
of its container. However, when the width of the container is reduced, the div
will still try to maintain the 100%
width, which will create an empty space.
To fix this problem, you can remove the max-width: 100%;
attribute from the .about-me div
. This will allow the div
to shrink based on the width of its content, thus eliminating empty space.