html
{
    font-size: 85%;
}

@media only screen and (min-width: 750px)
{
    html
    {
        font-size: 90%;
    }
}

@media only screen and (min-width: 1000px)
{
    html
    {
        font-size: 100%;
    }
}

@media only screen and (min-width: 1250px)
{
    html
    {
        font-size: 120%;
    }
}

body
{
    font-family: Open Sans, sans-serif;
    background-color: #ffffff;
    color: #0c0d11;
    line-height: 1.5;
}

::-webkit-scrollbar
{
    width: 10px;
    background-color: #ffffff;
}

::-webkit-scrollbar-thumb
{
    background-color: #0c0d11;
    border: 3px solid #ffffff;
}

::selection
{
    background-color: #0c0d11;
    color: white;
}

#wrapper
{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10vh 5%;
}

@media only screen and (min-width: 750px)
{
    #wrapper
    {
        padding: 10vh 17%;
    }
}

.main
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 4rem 1rem;
    border: .35rem solid #0c0d11;
}

@media only screen and (min-width: 750px)
{
    .main
    {
        padding: 4rem 6rem;
    }
}

.logo
{
    margin-bottom: 3rem;
    font-family: Open Sans Condensed, sans-serif;
    letter-spacing: .1em;
    font-size: 2rem;
    text-transform: uppercase;
    white-space: nowrap;
}

@media only screen and (min-width: 750px)
{
    .logo
    {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 1000px)
{
    .logo
    {
        font-size: 4rem;
    }
}

.content
{
    width: 85%;
}

@media only screen and (min-width: 750px)
{
    .content
    {
        width: 75%;
    }
}


.link
{
    border-bottom: 1px solid #0c0d11;
}

.paragraph
{
    margin-bottom: 2.5rem;
    text-align: center;
}

.paragraph:last-child
{
    margin-bottom: 0;
}
