@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em "Calibri", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat top left #EDEA43;
    overflow: hidden;
    padding: 1rem;
    height: 510px;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li, h1 {
    padding-left: 1rem;
}
ul li:before, h1:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    display: none;
}
.tt {
    position: absolute;
    top: 5.9rem;
    right: 3.3rem;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
    flex-wrap: wrap;
    padding: 20.6rem 0 1.5rem 1rem;
    width: 50%;
    margin-left: -3rem;
}
footer p {
    text-align: center;
}
p :is(a, span) {
    display: inline-block;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
        background: #EE2C23;
        height: auto;
    }
    header {
        display: flex;
        justify-content: center;
    }
    .tt {
        position: static;
    }
    .box2 {
        padding: 0;
    }
    article, footer {
        padding: 1rem;
    }
    article br {
        display: none;
    }
    footer {
        background: #EDEA43;
        margin: 0;
        width: auto;
    }
    h2 {
        text-align: left !important;
    }
}