/* -- RESET -- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* -- GENERAL -- */

* {
    box-sizing: border-box;
}

body {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Roboto Slab', sans-serif;
}

h1 {
    font-size: 32px;
    line-height: 130%;
    color: #fff;
}

h2 {
    color: #7c9bb0;
    font-size: 24px;
    font-weight: lighter;
    padding-bottom: 20px;
}

h3 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

.wrapper {
    text-align: center;
    padding: 0 50px;
}

@media (min-width: 768px) {
    .wrapper {
        text-align: left;
    }
}

a, a:hover, a:active, a:visited, a:focus,
p, li {
    color: #fff;
}

a:hover, a:active {
    text-decoration: none;
}

.logo {
    display: inline-block;
    margin-bottom: 30px;
}

.content {
    padding: 20px 0;
    background-color: #242f3a;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .content {
        /*width: 1024px;*/
        flex-direction: row;
    }
}

.content-left, .content-right {
    padding: 30px 50px;
}

.content-left {
    box-sizing: border-box;
}

.content-right {
}

.content li {
    line-height: 26px;
    font-size: 18px;
    font-weight: lighter;
}











































