@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    max-width: 920px;
    border: 1px solid #187E1E;
    background-color: #fff;
}

article {
    padding: 15px 20px;
}


footer {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer p {
    font-size: 15px;
    padding-top: 5px;
}

p:not(:first-of-type) {
    margin-top: 16px;
}

h1 {
    font-size: 25px;
    line-height: 1.25;
    margin: 12px 0 0;
    color: #2D8A32;
}

h2 {
    font-size: 15px;
    line-height: 20px;
    margin-top: 12px;
}

ul {
    list-style: none;
    margin: 0;
}

ul li {
    background: url(icon.jpg) 0 4px no-repeat;
    padding-left: 12px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #228632;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
}

.font {
    color: #228632;
}

.color {
    color: #2D8A32;
}

@media only screen and (max-width:920px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(article, footer) {
        padding: 16px
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    article p:first-of-type {
        text-align: left;
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0;
    }

    footer {
        align-items: center;
    }
}