html
{
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
}

body
{
    margin: 0;
}

h1
{
    color: white;
    font-size: 50px;
}

h2
{
    color: white;
    font-size: 32px;
}

h3
{
    color: white;
    font-size: 24px;
}

.bg-e
{
    overflow-clip-margin: content-box;
    overflow: clip;
    object-fit: cover;
    object-position: center center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.bg-img
{
    background-image: url(https://treeism.net/draw/treeism_twttr_bg.png);
    background-size: cover;
    background-position: center;
    height: 100%;
}

.cover
{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    left: 0;
    background-color: black;
    z-index: -9;
}

.treeism-cover
{
    width: 35%;
    /*max-width: 400px;*/
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 10px black;
}

.header
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    background-color: black;
    overflow: auto;
}

.header-box
{
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 100px;
    margin-right: 100px;
}

hr
{
    border: solid .5px #AAA7;
    width: 340px;
}

input
{
    border-radius: 30px;
    height: 30px;
    font-size: 16px;
    padding: 5px 20px 5px 20px;
    width: 300px;
    background-color: transparent;
    border: solid .5px white;
    color: white;
    margin-bottom: 10px;
}
input:focus
{
    outline: none;
    border: solid .5px #008F2C;
}

input[type=submit]
{
    width: 340px;
    height: 40px;
    border: solid .5px #008F2C;
    cursor: pointer;
    transition: 0.25s all ease 0s;
}
input[type=submit]:hover
{
    background-color: #008F2C30;
    transition: 0.25s all ease 0s;
}
input[type=submit]:focus
{
    background-color: #008F2C30;
    transition: 0.25s all ease 0s;
}
input[type=submit]:active
{
    background-color: #006F0C30;
    transition: 0.25s all ease 0s;
}

input[type=submit].high
{
    transition: 0.25s all ease 0s;
    border: solid .5px #008F2C;
    background-color: #008F2C;
}
input[type=submit].high:hover
{
    transition: 0.25s all ease 0s;
    background-color: #00A845;
}
input[type=submit].high:focus
{
    transition: 0.25s all ease 0s;
    background-color: #00A845;
}
input[type=submit].high:active
{
    transition: 0.25s all ease 0s;
    background-color: #007815;
}

button.high
{
    border-radius: 30px;
    height: 40px;
    font-size: 16px;
    padding: 5px 20px 5px 20px;
    width: 340px;
    color: white;
    margin-bottom: 10px;
    transition: 0.25s all ease 0s;
    border: solid .5px #008F2C;
    background-color: #008F2C;
    cursor: pointer;
}
button.high:hover
{
    transition: 0.25s all ease 0s;
    background-color: #00A845;
}
button.high:focus
{
    transition: 0.25s all ease 0s;
    background-color: #00A845;
}
button.high:active
{
    transition: 0.25s all ease 0s;
    background-color: #007815;
}

.compact-only
{
    display: none;
}

@media screen and (max-width: 900px)
{
    .compact-only
    {
        display: block;
    }

    .bg-e
    {
        display: none;
    }
    
    .cover
    {
        display: none;
    }

    .header
    {
        width: 100%;
        position: static;
    }
}

@media screen and (max-width: 500px)
{
    html
    {
        height: 100%;
    }

    body
    {
        display: flex;
        align-items: center;
    }

    .compact-only
    {
        display: block;
    }
    
    h1
    {
        font-size: 40px;
    }

    .header-box
    {
        margin: 0 15px;
        box-sizing: border-box;
        position: static;
        transform: none;
    }

    input
    {
        width: 100%;
        box-sizing: border-box;
        height: 40px;
    }

    input[type=submit]
    {
        width: 100%;
    }

    input[type=submit].high
    {
        width: 100%;
    }

    hr
    {
        width: 100%;
    }
}