@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #1b4b42;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 630px;
    margin: 1rem auto;
    border: 4px solid #aac426;
    background-color: #fff;
}

header {
    padding: 14px 25px 0;
    border-bottom: 10px solid #1c4c43;
    background: #f4f4f4;
}

header p {
    text-align: justify;
    font-size: 1.20625rem;
}

.title {
    background: #213e37;
    padding: 12px 25px;
    margin: 16px -25px 0;
}

article {
    padding: 20px 25px 16px;
    border-top: 10px solid #aac638;
    border-bottom: 16px solid #aac638;
    background: url('../images/background.jpg') no-repeat;
    background-size: cover;
}

footer {
    padding: 5px 26px 9px 16px;
    background: #213e37;
    border-top: 16px solid #1c4c43;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer :is(p, h4) {
    text-align: center
}

footer p {
    color: #fff;
    font-weight: 700;
    margin: 6px 0;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

span {
    white-space: nowrap;
}

:is(h1, h2, h3, h4 strong) {
    font-weight: 700;
}

h1 {
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
    color: #aac638;
}

h1 small {
    display: block;
    font-size: 20px;
    line-height: 24px;
}

h1 span {
    font-weight: 400;
    font-size: 20px;
}

h2 {
    font-size: 19px;
    margin: 0 0 3px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

h3 {
    text-align: center;
    font-size: 25px;
    line-height: 1.3;
}

h3 span {
    display: block;
    text-decoration: underline;
    font-size: 21px;
}

h4 {
    color: #aac638;
    font-size: 22px;
    line-height: 21px;
}

h4:nth-of-type(2) {
    display: block;
    letter-spacing: 7px;
    text-decoration: underline;
}

ul {
    list-style: none;
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 24px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

ul li {
    padding-left: 30px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 25px;
    text-indent: -16px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:629px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    header {
        padding: 16px 16px 0;
    }

    header p {
        text-align: left;
    }

    .title {
        margin: 16px -16px 0;
        padding: 16px;
    }

    :is(article, footer) {
        padding: 16px
    }
}

@media only screen and (max-width:588px) {
    footer {
        flex-direction: column;
        gap: 16px;
    }

    :is(h4, h3 span) {
        font-size: 19px
    }

    h4:nth-of-type(2) {
        letter-spacing: 0;
    }

    ul li {
        padding-left: 16px;
    }
}