@charset "utf-8";

@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/titillium-web-v15-latin-regular.eot');
    src: local(''), url('../fonts/titillium-web-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/titillium-web-v15-latin-regular.woff2') format('woff2'), url('../fonts/titillium-web-v15-latin-regular.woff') format('woff'), url('../fonts/titillium-web-v15-latin-regular.ttf') format('truetype'), url('../fonts/titillium-web-v15-latin-regular.svg#TitilliumWeb') format('svg');
}

@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/titillium-web-v15-latin-600.eot');
    src: local(''), url('../fonts/titillium-web-v15-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/titillium-web-v15-latin-600.woff2') format('woff2'), url('../fonts/titillium-web-v15-latin-600.woff') format('woff'), url('../fonts/titillium-web-v15-latin-600.ttf') format('truetype'), url('../fonts/titillium-web-v15-latin-600.svg#TitilliumWeb') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 400 1em/1.5em Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 835px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.svg') no-repeat left -300px top;
    overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p,
li {
    text-align: justify;
}

p {
    padding-bottom: 1rem;
}

h1,
.font {
    font-family: 'Titillium Web', Arial, sans-serif;
}

h1 {
    font-weight: 600;
}

h1 {
    margin: 0 0 1rem;
    font-size: 2.1em;
    line-height: 1.1;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
}

ul {
    padding: 0 0 1rem 4rem;
    list-style: none;
    margin-top: 1rem;
}

li {
    padding: 0 0 0 1rem;
    position: relative;
}

li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo {
    padding: 2rem 3rem;
    display: flex;
}

article {
    padding: 2rem 3rem 0;
}

footer {
    padding: 0 3rem 3rem;
}

.button a {
    display: block;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    width: 206px;
    text-align: center;
    font-weight: 600;
}

@media only screen and (max-width:834px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }

    ul {
        padding-left: 2rem;
    }
}

@media only screen and (max-width:768px) {

    .logo,
    article,
    footer {
        padding-inline: 2rem;
    }

    .logo {
        justify-content: center;
    }
}

@media only screen and (max-width:480px) {
    h1 {
        text-align: center;
    }

    .logo,
    article,
    footer {
        padding-inline: 1rem;
    }

    ul {
        padding-left: 0;
    }

    .button {
        display: flex;
        justify-content: center;
        padding: 0;
    }
}