@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.25em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 810px;
    padding: 2.1rem 2rem 2rem;
    background: #fff url('../images/bg.jpg') no-repeat;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
margin: 1rem 0rem 1.7rem;
  font-size: 1.75em;
  line-height: 1.1em;
  text-align: center;
  color: #FF0000;
}
h1 span{
    font-size: 0.6em;
    color: #000;
}
h1 small {
    font-size: 0.8em;
    display: block;
}
h2{
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 0.7rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ins{
    color: #0000FF;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 20px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -20px;
}

.intro{
    font-size: 1.125em;
    line-height: 1.3;
}
article {
    padding: 0.7rem 0 0;
    position: relative;
}
.big{
   position: absolute;
  right: 3rem;
  bottom: 0.3rem;
}
footer {
  position: absolute;
  right: 3rem;
  bottom: 5rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:809px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
        padding: 1rem;
    }
   
    p :is(span, a) {
        display: inline-block;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    h1{
        background: #DBDBDB;
        padding: 0.5rem;
        margin: 0 0 1rem;
    }
    p{
        text-align: left;
    }
    .big{
        position: static;
    }
    .intro br,  .big br{
        display: none;
    }
}