I have the issue that on mobile devices with a screen size less/equal 320px the content is not shown 100% wide which you can see in this image:
I have also uploaded the files here: http://files.ailola.com/tmp/v1/privacy.php
I have been able to figure out the following points:
Removing the linked stylesheet does not solve the issue neither.
I just do not figure out the reason. Do you have an idea? Thanks so much for your help.
There are multiple paragraphs
on your page which are overflowing container due to default word wrapping strategy.
To fix the issue apply either word-break or overflow-wrap style to your paragraph:
p {
...,
word-break: break-all;
}
or
p {
...,
overflow-wrap: break-word;
}