Hey there! I'm experiencing an issue with text wrapping when the window is resized. Even though I have added CSS code to make it wrap nicely within its container, it doesn't seem to be working as expected:
article {
overflow: auto;
word-wrap: break-word;
}
Interestingly, removing this code doesn't change the behavior at all - the text still wraps near the end of the line.
The big gaps between words are really bothering me. I've seen other websites where text wraps nicely without any extra code. Can someone help me fix this space issue? Thank you!