@media only screen and (max-width: 40em) {


    html {
        /*font-size: 100%;*/
    }

    body, article {
        max-width: 100vw !important;
    }

    .contacts {
        grid-area: contacts;
        text-align: center;
        color: white;
    }
    article {
        padding: 0;
        grid-area: content;
    }
    article p, article h1, article h2, article h3, article blockquote, article pre, article .text  {
        padding-left: 1rem;
        padding-right: 0.5rem;
    }

    .footer {
        grid-area: footer;
        text-align: center;
        margin-bottom: 3em;
    }

    pre {
        width: 90vw;
        height: 50vh;
        overflow: auto;
        overscroll-behavior:none;
        margin: 0 0 0 auto;

    }


}