@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 0.938em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #6F6F6E;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 915px;
    border: solid 1px #000;
    background: #fff;
}

p {
    padding-bottom: 1rem;
    text-align: justify;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 3.2em;
    line-height: 1.1em;
    background: linear-gradient(to right, #00879F, #96C66F);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 16px;
    position: relative;

}

li:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: "";
    background: #008C9D;
    background: linear-gradient(90deg, rgba(0, 140, 157, 1) 34%, rgba(177, 207, 98, 1) 88%);
}

main {
    padding: 0.5rem 5rem 1rem;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

footer p {
    padding-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:914px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    main {
        padding: 1rem 2rem;
    }

    h1 {
        font-size: 2.3em;
    }

    h1 br {
        display: none;
    }

    p :is(span, a) {
        display: inline-block;
    }
}

@media only screen and (max-width:680px) {
    h1 {
        font-size: 1.8em;
    }

    footer p {
        padding-bottom: 1rem;
    }

    main {
        padding: 1rem 1rem;
    }
}