@font-face {
    font-display: swap;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/ubuntu-v20-latin-500.eot');
    src: url('../fonts/ubuntu-v20-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/ubuntu-v20-latin-500.woff2') format('woff2'), url('../fonts/ubuntu-v20-latin-500.woff') format('woff'), url('../fonts/ubuntu-v20-latin-500.ttf') format('truetype'), url('../fonts/ubuntu-v20-latin-500.svg#Ubuntu') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot');
    src: url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'), url('../fonts/ubuntu-v20-latin-700.woff') format('woff'), url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'), url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 18px;
    line-height: 1.2;
    font-family: 'Ubuntu', Arial, sans-serif;
    color: #000;
    font-weight: 500;
}

#wrapper {
    padding: 10px;
    position: relative;
    max-width: 540px;
    margin: 1rem auto;
    border: 2px solid #77FAAE;
    overflow: hidden;
    background-color: #294441;
}

h1 {
    font-size: 43px;
    font-weight: 700;
    color: #77FAAE;
    line-height: 1;
    margin-bottom: 5px;
}

h1 span {
    font-size: 28px;
}

h2 {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    color: #77FAAE;
}

p:not(:last-of-type) {
    margin-bottom: 9px;
    text-align: justify;
}

.banner {
    display: flex;
    justify-content: end;
}

.content {
    padding: 8px 10px;
    border: 2px solid #77FAAE;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(143, 195, 165, 0.93) 50%, rgba(86, 178, 126, 0.85) 100%);
    max-width: 332px;
    position: absolute;
    bottom: 21px;
    left: 10px;
}

article {
    position: relative;
    margin: 0 -10px;
}

footer p {
    color: #77FAAE;
    font-size: 21px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #77FAAE;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 17px;
    position: relative;
}

ul li:before {
    content: url('../images/icon.png');
    position: absolute;
    top: 0;
    left: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 539px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 16px;
    }

    article {
        margin: 0 -16px;
    }

    h1 {
        font-size: 38px;
    }

    :is(ul li, p) {
        hyphens: auto;
    }

    p:not(:last-of-type) {
        text-align: left;
    }

    br {
        display: none;
    }
}

@media (max-width: 469px) {
    .content {
        position: relative;
        margin: -34% 16px 10px;
        bottom: 0;
        left: 0;
        max-width: 100%;
    }
}