:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #000;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #C6C6C6 solid;
    max-width: 938px;
    position: relative;
    padding: 70px 95px 50px;
    background-color: #FFF;
    overflow: hidden;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
} 

p {
    margin-bottom: 16px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
}

h2 {
    font-size: 16px;
    color: #FF0000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin-bottom: 16px;
    list-style: none;
}

ul li {
    padding-left: 21px;
}

li:before {
    content: '\2012';
    float: left;
    font-size: 17px;
    text-indent: -20px;
    line-height: 1;
    margin-top: 2px;
}

@media only screen and (max-width:937px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 6%;
    }

    header>img {
        width: 100%;
    }

    :is(p, li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

}

@media only screen and (max-width:640px) {
    #wrapper {
        padding: 0;
    }

    :is(article, footer) {
        padding: 0 16px 1px;
    }

}

@media only screen and (max-width:480px) {
    .link {
        white-space: normal !important;
    }
}