:root {
    --FH\%: 130px;
    /* Footer and Header Height*/
    --BanH: 40px;
    /* Under Construction Banner Height*/
}

html {
    background: rgb(236, 227, 201);
}

body {
    text-align: center;
    height: 640px;
    font-size: 12pt;
    width: 360px;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: .5em;
    line-height: 1em;
}

body, header, footer, .cautionTape h3 {
    margin: 0;
}

header, footer {
    display: inline-block;
    width: 360px;
    height: var(--FH\%);
    position: relative;
}

footer h6 {
    position: absolute;
    bottom: 5px;
    left: 5px;
}

.container {
    display: inline-block;
    width: 360px;
    height: 300px;
}

.cautionTape h3, .comingSoon {
    background-color: #b8b800;
    color: black;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid #3b3f00;
    width: 80%;
    padding: .2em;
}

.cautionTape {
    height: var(--BanH);
    background: url('images/Caution-Header--Arvin61r58.svg') center;
    background-color: #b8b800;
    display: inline-block;
    background-size: auto calc(var(--BanH) + 1px);
    width: 360px;
}

.comingSoon {
    padding-bottom: 20px;
}

/* Minimum Viewport Height Exceeded */

@media only screen and (min-height: 640px) {
    :root {
        --FH\%: calc(130px + 2vmin);
        /* Footer and Header Height*/
        --BanH: calc(40px + 1vmin);
        /* Under Construction Banner Height*/
    }
    body, html {
        height: 100%;
    }
    body {
        font-size: calc(8pt + 1.3vmin);
    }
    .container {
        height: calc(100% - ((var(--FH\%) * 2) + (var(--BanH) * 2)));
    }
    .comingSoon {
        padding-top: 45px;
        padding-bottom: 60px;
    }
}

/* Minimum Viewport Width Exceeded */

@media only screen and (min-width: 360px) {
    body {
        width: 100%;
    }
    header, footer {
        width: 100%;
    }
    .cautionTape {
        width: 100%;
    }
    .container {
        width: 100%;
    }
}

/*Changes for  Tables*/

@media only screen and (min-width: 600px) {
    .cautionTape h3 {
        width: calc(300px + 20vmin);
    }
}

@media only screen and (min-width: 600px) and (min-height: 640px) {
    .cautionTape h3 {
        padding: .1em;
    }
}

/*Changes for 2-in-1's and Larger*/

@media only screen and (min-width: 876px) {
    .comingSoon {
        width: calc(600px + 15%);
    }
}

@media only screen and (min-width: 876px) and (min-height: 640px) {
    .cautionTape h3 {
        padding: .05em;
    }
}