@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 596px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #268ACB;
    background-color: #268ACB;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
p span.ttu {
    font-size: 1.2em;
    line-height: 1.3em;
    text-transform: uppercase;
}
p.cuttom {
    background: #BFD356;
    border-radius: 50%;
    width: 200px;
    height: 120px;
    box-shadow: 2px 2px 6px 1px #ADADAD;
    padding: 1rem 1rem 0;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
    color: #268ACB;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    color: #BFD356;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin-left: -1rem;
}
header, article, footer {
    padding: 1rem 1rem 0;
}
header p, h1, p.cuttom {
    text-align: center;
}
article {
    background: #FFF;
    border-top: 10px solid #BFD356;
    border-bottom: 10px solid #BFD356;
}
header p, footer p, p a.color {
    color: #FFF;
}
.cuttom {
    position: absolute;
    bottom: 3rem;
    right: 1rem;
    transform: rotate(-7deg);
    font-style: italic;
}
@media only screen and (max-width: 595px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .cuttom {
        position: static;
        display: block;
        margin: 1rem auto;
    }
    article figure {
        display: flex;
        justify-content: center;
        margin: 0;
    }
    br:not(footer br){
        display: none;
    }
}