@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 519px;
    margin: 1rem auto;
    border: 2px solid #3FC5E8;
    background: #fff url('../images/bg.jpg') no-repeat left top;
    background-size: auto 100%;
    overflow: hidden;
    padding: 0.6rem 1rem 0.5rem 5.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5em;
    line-height: 1;
    color: #3FC5E8;
}
ul {
    padding: 0 0 0rem;
    list-style: none;
}
li {
    padding: 0 0 1rem 1.6rem;
    font-size: 1.6em;
    line-height: 1.3;
    position: relative;
}
li:before {
    content: "-";
}
h2 {
    font-size: 1.87em;
    line-height: 1.3em;
    position: relative;
    padding-left: 2rem;
}
h2:before {
    content: "\25A0";
}
h2:before, li:before {
    font-size: 1.7rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #ED028C;
}
.cs1:before, ul:last-of-type :before {
    color: #F36A21;
}
.cs2:before {
    color: #40AE49;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0 0.75rem;
}
header :is(p, h1) {
    text-align: center;
}
header p {
    font-size: 1.6em;
    line-height: 1.2;
}
footer {
    margin: 0.5rem 0 0 0.5rem;
}
footer p {
    font-size: 1.35em;
    line-height: 1.3;
}
figure {
    position: absolute;
    right: 1rem;
    bottom: 5.3rem;
}
.button a {
  background: #00AEEF;
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.button {
    padding-top: 1.5rem;
}
@media only screen and (max-width:559px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
        padding: 1rem;
    }
    :is(p, li) {
        hyphens: auto;
    }
    header p, li {
        font-size: 1.4em;
        line-height: 1.3;
    }
    li:before {
        top: -3px;
    }
    h1 {
        font-size: 1.7em;
    }
    h2 {
        font-size: 1.3em;
    }
    article br {
        display: none;
    }
    footer p, .button {
        text-align: center;
    }
    figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}