@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: 555px;
    border: solid 1px #000;
    background: #fff;
}
p {
    padding-bottom: 0.5rem;
    text-align: center;
}
h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.692em;
    line-height: 1.1em;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    right: 74px;
    top: 13rem;
    color: #fff;
}
h1 span {
    display: block;
    font-size: 0.75em;
    font-weight: 400;
}
h2 {
    display: inline-block;
    font-size: 1.188em;
    line-height: 1.3;
    padding: 0.7rem 1rem;
    background: url('../images/left.jpg') no-repeat left, url('../images/right.jpg') no-repeat right;
}
h3 {
   font-family: 'Segoe Script', sans-serif;
  transform: rotate(-2deg);
  font-size: 1.063em;
  line-height: 1.3;
  position: absolute;
  bottom: 14rem;
  right: 1rem;
}
h2, h3 {
    color: #36A2C5;
}
: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;
}
header {
    padding: 0;
}
article {
    padding: 0.2rem 1rem 0;
}

.small {
    font-size: 0.875em;
}
footer {
    padding: 0.5rem 1rem 0;
    background: #79C4D8;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:554px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        position: static;
        color: #000;
        font-size: 1.375em;
    }
    h3{
        position: static;
        text-align: center;
        padding-bottom: 1rem;
    }
    article br {
        display: none;
    }
}