html, body {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    line-height: 2.4;
    min-height: 100vh;
    font-family: 'Avenir LT Std', Arial, sans-serif;
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

body {
    background: #e9e9e9;
    font-size: 18px;
}

.site_button {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    cursor: pointer;
}

.site_button:hover {
        background-color: aquamarine;
    }

input {
    border-bottom-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    background-color: white;
}


.form_error {
    color: red;
}

#email_form_wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba( 40, 40, 40, 0.2 );
}

#close_email_form {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    background-color: #E8E8E8;
    text-align: center;
    padding: 6px 0;
    border-radius: 5px;
    cursor: pointer;
}

    #close_email_form:hover {
        background-color: aquamarine;
    }

#email_form_bg {
    position: relative;
    line-height: 1.2em;
    width: 320px;
    padding: 20px 30px;
    margin: 150px auto;
    background-color: white;
    overflow: auto;
}

#email_form {
    margin-top: 50px;
}

#email_form input {
        width: 310px;
        padding: 5px 5px;
}

#message {
    height: 7.2em;
    width: 310px;
    padding: 5px 5px;
    resize: vertical;
}

#send_email_button {
    padding: 8px 0;
    text-align: center;
    width: 70px;
    float: right;
}

#email_result {
    position: absolute;
    display: none;
    top: 80px;
    left: 50px;
}
