html {
    font-family: "PT Sans", Helvetica, Arial, sans-serif;
    font-size: xx-large;
    white-space: nowrap;
    box-sizing: border-box;
    background: #fff;
}

body {
    margin: 0 auto;
    height: calc(100vh - 4rem);
    width: 100vw;
    max-width: calc(100vw - 4rem);
    overflow-x: hidden;
}

div.content {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* Image */
img.logo {
    display: block;
    margin: 0 auto;
    transition: all ease-in-out 420ms;
    max-width: calc(100vw - 4rem);
}

img.logo:hover {
    transform: rotate(-3deg);
}


/* VCard */
table {
    margin: 0 auto;
    max-width: calc(100vw - 4rem);
}
td {
    vertical-align: top
}
td.header_column {
    color: #006944;
    text-transform: uppercase;
    text-align: end;
    padding-right: 0.5rem;
    letter-spacing: -.05rem;
}
td.spacer {
    background: #006944;
    padding-right: 0.1rem;
    padding-left: 0.1rem;
}
td.content {
    padding-left: 0.5rem;
    line-height: 1.5rem;
}
tr.blank_row {
    height: 1rem;
}
td.header_row {
    color: #006944;
    font-size: xxx-large;
}

/* General Body */
a {
    color: #000;
    transition: letter-spacing ease-out 200ms;
}

a:hover {
    color: #006944;
    letter-spacing: .02rem;
    font-weight: bold;
}

/* QuickSupport */

.footer {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100vw;
    height: 48px;
    top: calc(100vh - 48px);
    left: 0;
    background-color: #006944;
}

.footerlink {
    font-weight: bold;
    font-size: x-large;
    margin: 6px;
    color: white;
    transition: unset;
    letter-spacing: unset;
}

.footerlink:hover {
    color: white;
    letter-spacing: .02rem;
    text-decoration: unset;
}

/* Respnsive */

@media only screen and (max-width: 1280px) {
    div.content {
	margin-top: 2rem;
        display: block;
	justify-content: unset;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: x-large;
    }

    td.header_row {
        font-size: x-large;
    }

    .footerlink {
	font-size: large;
    }

    .footer{
        height: 36px;
        top: calc(100vh - 36px);
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size: larger;
    }

    td.header_row {
        font-size: larger;
    }

    .footerlink {
	font-size: medium;
    }
}

@media only screen and (max-width: 360px) {
    html {
        font-size: medium;
    }

    td.header_row {
        font-size: medium;
    }

    .footerlink {
	font-size: unset;
    }
}

