@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot'); 
  src: local(''),
       url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), 
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), 
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), 
       url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #5c5c5c;
    font: 400 1em/1.5em "Roboto", Arial sans-serif;
    background: #F2F4F5;
}
img {
    max-width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 8px 0 rgba(160, 166, 168, 0.35);
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
h1,h2, strong{
    font-weight: 700;
}
p {
    margin: 0 0 .937rem;
}
ul {
    list-style: none;
    margin: 0 0 .937rem .937rem;
    padding: 0;
}
ul li {
    padding-left: 1.375rem
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}
header {
    margin-bottom: 1.5rem;
}
h1 {
    font-size: 1.5em;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
}
h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
footer {
    margin-top: 1.25rem;
}
a.mail {
    color: #07D;
}
a.mail:hover {
    text-decoration: underline;
}
a.button {
    background: #009BDE;
    color: #fff;
    padding: .625rem 3.125rem;
}
.center {
    text-align: center;
    margin: 3.125rem auto 0;
    display: block
}
@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }
    p :is(a,span){
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .center {
        margin: 2rem 0 1rem
    }
    p,ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin-left: 0;
    }
}