html, input, textarea {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 16px;
    line-height: 1.42em;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
}

h3 {
    margin:.5em 0 -.5em 0;
}

p {
    margin:.5em 0;
}

#page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.fixit {
    position: fixed;
}

.content-container {
    max-width: 1000px;
}

ul {
    text-align: left;
}

header#page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    text-align: center;
    position: relative;
    min-height: 50vh;
}

section {
    display: flex;
    display: none;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    text-align: center;
    position: relative;
    min-height: 50vh;
}

footer#page-footer div > div {
    float:right;
    width:50%;
    text-align: left;
    box-sizing: border-box;
    padding:0 2rem;
    margin:2rem 0;
}

footer#page-footer div > div h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

footer#page-footer div > div p:last-child,
footer#page-footer div > div textarea:last-child {
    margin-bottom: 0;        
}
footer#page-footer div > div:first-child {
    border-left: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
    footer#page-footer div > div {
        padding: 0;
        margin: 0;
    }
    footer#page-footer div > div:first-child {
        border-bottom: 1px solid #ccc;    
        border-left: none;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    footer#page-footer div > div {
        width: 100%;
    }
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        font-size: 16px;
    }
}

footer#page-footer {
    margin: auto;
    text-align: center;
    position: relative;
    background: #f5f5f5;
    width: 100%;
    font-size: .8em;
    color: #444;
    padding: 2rem;
    box-sizing: border-box;
}

footer#page-footer a {
    color: inherit;
    text-decoration: none;
}

footer#page-footer a:hover {
    color: #111;
}

.content-container {
    max-width:1000px;
    display: block;
    margin: 0 auto;
}

h1 {
    font-family: "HelveticaNeue-Light";
    font-weight: 100;
    font-size: 6em;
    color: #ffcc00;
    line-height: 1em;
    /* letter-spacing: 0.1em; */
    margin: 0;
}

header#page-header svg {
    position: relative;
}

p.subheading {
    color: #111;
    margin: .5em 0;
}
input, textarea {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: .25em .5em;
    float: left;
    clear: both;
    width:100%;
    margin:.5em 0;
    font-size: 1em;
    box-sizing: border-box;
}
.grow-wrap > textarea,
.grow-wrap::after {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: .25em .5em;
    width:100%;
    margin:.5em 0;
    font-size: 1em;
    box-sizing: border-box;
    max-height: 300px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}
label {
    font-size:1.17em;
    font-weight: bold;
    line-height: line-height 1.42em;
    margin:.25em 0 -.5em 0;
    float: left;
    clear: both;
}
button {
    float:left;
    clear:both;
    margin:1em 0 0 0;
    font-size:1.17em;
    line-height:2em;
    padding:0 .75em;
    background-color:darkseagreen;
    color:#fff;
    border:none;
    border-radius: 3px;
    cursor: pointer;
}
button:hover {
    background-color: #7fcc7f;
}
form {
    font-size:inherit;
    margin:0;
    padding:0;
}
#lname,label[for=lname] {
    border-width: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}
.grow-wrap {
    /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
    display: grid;
    float:left;
    clear:both;
    width:100%;
}
.grow-wrap::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
}
.grow-wrap > textarea {
    resize: none;
}
.grow-wrap > textarea,
.grow-wrap::after {
    font: inherit;
    grid-area: 1 / 1 / 2 / 2;
}