Add the following to the `<head>` section of each page (see https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag#viewport_basics): ```html <meta name="viewport" content="width=device-width, initial-scale=1.0"> ``` change `default.css` line 11+ to e.g. something like: ```diff body { font-family: 'Monserrat', sans-serif; - margin-left: 100px; - margin-right: 100px; + margin-inline: min(10%, 100px); } ```
Add the following to the
<head>section of each page (see https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag#viewport_basics):change
default.cssline 11+ to e.g. something like:body { font-family: 'Monserrat', sans-serif; - margin-left: 100px; - margin-right: 100px; + margin-inline: min(10%, 100px); }