The text formatting could be easier to read.
Maybe try this?
/
Apply to all elements
/
body {
max-width: 100ch;
overflow-wrap: break-word;
word-wrap: break-word; /
For older browsers
/
word-break: break-word; /
Ensure compatibility
/
font-size: 1rem;
line-height: 1.75;
}
/
Apply to specific elements
/
.wrap-100 {
max-width: 100ch;
overflow-wrap: break-word;
word-wrap: break-word; /
For older browsers
/
word-break: break-word; /
Ensure compatibility
/
font-size: 1rem;
line-height: 1.75;
}