*
{
    margin: 0;
    padding: 0;
}

.container
{
    width: 80%;
    margin: auto;
}

.document p
{
    text-align: left;
}

.document
{
    max-width: 832px;
    margin: auto;
}

.document h1:first-child
{
    margin-top: 0;
}

.document h1
{
    text-align: left;
    font-size: 2em;
    max-width: unset;
    margin-top: 1.5em;
    margin-bottom: 1.2em;
}

.document h2
{
    font-size: 1.5em;
    display: block;
    background-color: unset;
    color: unset;
    border-radius: unset;
    padding: 0;
    margin-bottom: 0;
    margin-top: 1em;
}

.document p
{
    margin-top: 0.5em;
}

.document ul li
{
    list-style: disc;
}

html
{
    background-color: #111;
    font-family: 'Nunito Sans', sans-serif;
    color: #eee;
}

a
{
    color: #eee;
}

a.button
{
    display: block;
    text-decoration: none;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;

    transition: background-color linear 0.2s;
}

a.button:hover
{
    background-color: rgba(255, 255, 255, 0.4);
}

ul
{
    margin-top: 1em;
}

ul li
{
    list-style: none;
    margin-top: 0.5em;
}

body.home
{
    display: flex;
    position: relative;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overscroll-behavior: none;
}

header, footer
{
    padding: 60px 0;
}

.home footer
{
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    bottom: 10vh;
}

footer p
{
    text-align: left;
}

p, .home footer p
{
    text-align: center;
}

h1
{
    text-align: center;
}

@media (max-width: 768px)
{
    .container
    {
        width: 95%;
    }

    .terms.container
    {
        width: 80%;
    }

    body.home
    {
        position: static;
        height: 55vh;
    }

    .home footer
    {
        width: 85.50%;
        flex-direction: column;
        bottom: 8vh;
    }

    h2
    {
        text-align: center;
    }

    h2:last-of-type
    {
        margin-top: 2em;
    }

    a
    {
        text-align: center;
    }
}