* {
    -webkit-box-sizing: border-box;
    box-sizing        : border-box;
}
/* STYLES ====================================================================== */
html {
    height: 100%;
}

body {
    margin            : 0;
    padding           : 0;
    height            : 100%;
    width             : 100%;
    /*background-color: rgb(191,185,177);*/
    background-color  : #0f0f0f;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    letter-spacing    : 0;
    color             : #fff;
}

.content {
    height               : 100%;
    width                : 100%;
    -webkit-box-sizing   : border-box;
    box-sizing           : border-box;
    padding              : 40px;
    display              : -webkit-box;
    display              : -ms-flexbox;
    display              : flex;
    -webkit-box-orient   : vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction   : column;
    flex-direction       : column;
    -webkit-box-pack     : center;
    -ms-flex-pack        : center;
    justify-content      : center;
    -webkit-box-align    : center;
    -ms-flex-align       : center;
    align-items          : center;
    text-align           : center;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
h1, h2, h3{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.29;
}
.content img {
    width      : 100%;
    height     : auto;
    max-width  : 300px;
    /*max-width: 200px;*/
    margin     : 0 0 60px 0;
    display    : block;
}

.content h1 {
    font-size     : 24px;
    margin     : 0 0 10px 0;
}
.content h2 {
    font-size     : 18px;
    max-width     : 600px;
    margin        : 0;
    margin: 0 0 30px 0;
}

.content p{
    font-size: 16px;
    margin   : 0 auto;
    padding  : 0;
    max-width: 700px;
    line-height: 2;
}

.content a {
    color          : #fff;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.content .buttons {
    margin-top: 25px;
}