.content h3 {
    font-size: 20px;
    padding: 20px;
}


h1,
p {
    margin: 0;
}

h1 {
    font-size: 40px;
    color: #191970;
    padding: 10px 0 0 0;
    text-decoration: underline;
}

p {

    font-size: 20px;
    padding: 20px;
}

.header {
    text-align: center;
    font-size: 20px;
    position: sticky;
    top: 0;
    /*Required for the stickiness */
}

.wrapper {
    min-height: 100%;
    width: 100%;
    display: grid;
    grid-gap: 6px;
    /*These next 2 rows needed to fill viewport on  paged with limited data to push footer to bottom*/
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    
}

@media screen and (max-width: 370px) {
    h1 {
        font-size: 20px;
        padding: 30px 0 0 20px;
    }

    p {
        font-size: 18px;
    }
}

@media screen and (min-width: 370px) {

    /* no grid support? */
    .contact {
        padding: 2em;
    }

    .contact h1 {
        font-size: 23px;
        padding: 0 0 0 .75em;
    }

    .contact p {
        font-size: 18px;
    }

    .contact span {
        color: #191970;
        font-weight: bolder;
    }

    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .header,
    .footer {
        flex: 0 1 100%;
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }


    .content {
        border: 4px solid #dcdcdc;
        border-style: double;
    }
}


.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;
    }
}
.bg {
    /* The image used */
    background-image: url("");

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}