@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/hind-v16-latin-regular.eot');
    src: url('../fonts/hind-v16-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-regular.woff2') format('woff2'), url('../fonts/hind-v16-latin-regular.woff') format('woff'), url('../fonts/hind-v16-latin-regular.ttf') format('truetype'), url('../fonts/hind-v16-latin-regular.svg#Hind') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/hind-v16-latin-600.eot');
    src: url('../fonts/hind-v16-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-600.woff2') format('woff2'), url('../fonts/hind-v16-latin-600.woff') format('woff'), url('../fonts/hind-v16-latin-600.ttf') format('truetype'), url('../fonts/hind-v16-latin-600.svg#Hind') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/hind-v16-latin-700.eot');
    src: url('../fonts/hind-v16-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-700.woff2') format('woff2'), url('../fonts/hind-v16-latin-700.woff') format('woff'), url('../fonts/hind-v16-latin-700.ttf') format('truetype'), url('../fonts/hind-v16-latin-700.svg#Hind') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Hind', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 480px;
    margin: 1rem auto;
    border: 14px solid #66b3bd;
    background-color: #e5f1f4;
    padding: 10px 16px;
    position: relative;
}

header {
    display: flex;
    justify-content: center;
}

article {
    padding: 10px 0 0;
}

article p:first-of-type {
    text-align: justify;
}

article p:last-of-type {
    font-weight: 700;
    color: #66b3bd
}

footer {
    position: absolute;
    bottom: -14px;
    right: -14px;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 36px;
    line-height: 24px;
    margin: 16px 0 0;
    color: #66b3bd;
}

h1 span {
    font-weight: 400;
    font-size: 21px;
}

h1+p {
    font-size: 18px;
    line-height: 23px;
    margin-top: 2px !important;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:480px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }

    br {
        display: none
    }

    article p:first-of-type {
        text-align: left;
    }

    footer {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 20px
    }

    h1 {
        text-align: center;
        font-size: 33px;
    }
}