@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 455px;
    border: solid 1px #000;
    background: #fff;
}

p {
    padding-bottom: 1rem;
}

.color {
    color: #5C6F78;
}

.title p {
    font-size: 1.188em;
    line-height: 1.4;
    color: #fff;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.952em;
    line-height: 1.1em;
    color: #A2CF62;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
}

: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;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}

article {
    padding: 0.5rem 1rem 0;
}

.title {
    position: absolute;
    left: 1rem;
    top: 10rem;
}

footer {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:454px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    .title p {
        color: #000;
    }

    .title {
        position: static;
    }

    .title br,
    .hide_m {
        display: none;
    }

    footer {
        position: static;
        padding: 1rem;
    }

    p :is(span, a) {
        display: inline-block;
    }
}