body {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

@media screen and (max-width: 40rem) {
    body {
        max-width: 100%;
        padding: 0.625rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

.pull-quote {
    padding-left: 2rem;
    max-width: 34rem;
    /*margin: 1.5rem 0;*/
    /*font-style: italic;*/
    /*color: #555;*/
    /*border-left: 4px solid #ddd;*/
}

/*.pull-quote p {*/
/*    margin: 0 0 1rem 0;*/
/*}*/

/*.pull-quote p:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

/*Gets special treatement so that it is displayed within a big gray box*/
.pull-quote code {
    font-style: normal;
    /*color: #333;*/
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    background: rgba(128, 128, 128, 0.15);
}

figure {
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.centered-image {
    max-width: 100%;
    height: auto;
}

figure figcaption {
    font-size: small;
    font-style: italic;
    color: #666;
    margin: 0.5rem 3.5rem;
}

figure img {
    width: 80%;
}

figure pre,
figure code {
    text-align: left;
}

/* Restore pre/code appearance similar to original */
pre {
    background: rgba(128, 128, 128, 0.15);
    padding: 0.75rem;
    overflow-x: auto;
}

pre code {
    background: transparent;
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}

blockquote, .pull-quote {
    padding-left: 2rem;
    max-width: 34rem;
}

hr {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.hanging-indent {
 padding-left: 2em;
 text-indent: -2em;
}

table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid black;
    padding: 5px;
}

