

@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-regular.eot');
  src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), 
       url('../fonts/roboto-v32-latin-regular.woff') format('woff'),
       url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'),
       url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v32-latin-700.eot');
  src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), 
       url('../fonts/roboto-v32-latin-700.woff') format('woff'),
       url('../fonts/roboto-v32-latin-700.ttf') format('truetype'),
       url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 17px;
    line-height: 22px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 590px;
    margin: 1rem auto;
    border: 2px #231f20 solid;
    overflow: hidden;
    background: #FFF url('../images/background.jpg') right -1px bottom 69px no-repeat;
}

header {
    padding: 16px 16px 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.background {
    background: #11b9b9;
    padding: 0.5rem 16px;
}

.background p {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
}

.content {
    padding: 15px 84px 0 0;
}

.content>p {
    padding: 0 1rem;
    text-align: justify;
    hyphens: auto;
}

.title {
    margin: 12px 0;
    background: #f0e9e3;
    padding: 16px 1rem 16px 50px;
}

.title+p {
    padding-right: 0;
}

footer {
    padding: 14px 2.25rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

span {
    white-space: nowrap;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    font-size: 26px;
    line-height: 1.1;
}

h1:before {
    content: url(../images/shield.jpg);
    float: left;
    text-indent: -2.125rem;
    position: relative;
}

h1 small {
    font-size: 82%;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

@media all and (max-width:588px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left !important;
    }

    br {
        display: none;
    }
}

@media all and (max-width:550px) {
    #wrapper {
        background: none;
    }

    .content {
        padding: 16px 0 0;
    }

    .title {
        padding: 16px 16px 16px 50px;
    }

    .title+p {
        padding-right: 16px;
    }

    footer {
        padding: 1rem;
    }
}

@media all and (max-width:424px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 16px;
    }
}