.header {
    text-align: center;
    font-size: 20px;
    position: sticky;
    top: 0;
    /*Required for the stickiness */
}

.wrapper {
    max-width: 100%;
    display: grid;
    grid-gap: 6px;
}

@media screen and (max-width: 600px) {

    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .sidebar {
        padding: 0 10px 0 10px;
        border: 4px solid #dcdcdc;
        border-style: double;
    }
}

@media screen and (min-width: 600px) and (max-width:1024px) {

    /* no grid support? */
    .sidebar {
        padding: 10px 10px 0 10px;
        border: 4px solid #dcdcdc;
        border-style: double;
    }


    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
    }

    .header,
    .footer {
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }

}

@media screen and (min-width: 1024px) {

    /* no grid support? */
    .sidebar {
        padding: 20px 20px 0 20px;
        border: 4px solid #dcdcdc;
        border-style: double;
    }


    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr 1fr 1fr;
        /*2fr 2fr splits page in half*/
        /*Changes wrapper width*/
    }

    .header,
    .footer {
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }

}

.wrapper>* {
    background-color: #ffffff;
    color: #000000;
    border-radius: 2.5px;
    font-size: 150%;
    /* needed for the floated layout*/
}

/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
    .wrapper>* {
        width: auto;
        margin: 0;
    }
}

/*Start of testimony*/

.recommend {
    font-size: 20px;
    color: #191970;
    padding: 10px 0 30px 5px;
    font-style: italic;
    font-weight: bold;
    text-decoration: underline;
}

@media screen and (max-width:370px) {
    .recommend {
        font-size: 16px;
    }
}

blockquote {
    display: block;
    padding: 1em 1em 1em 2em;
    margin: 0;
    text-align: left;
    background: #F4F4F4;
    position: inherit;
    -webkit-box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
    font-family: Georgia, serif;
    font-size: 18px;
    ;

}

/* quotation marks settings*/
blockquote:before {
    color: #808080;
    content: "\201C";
    /*Unicode for Left Double Quote*/
    font-size: 3em;
    position: inherit;
    left: 3px;
    top: .5em;
    line-height: 1em;
}

@media screen and (max-width: 600px) {

    blockquote {
        font-size: 15px;
    }

}

/*
blockquote:after {
    color: #808080;
    content: "\201D";
    font-size: 4em;
    position: relative;
    right: 4px;
    top: -2.2em;
    line-height: 0.1em;
    float: right;
}
*/

