@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 5rem 2rem;
}
#wrapper:before {
    background: #C0C0C0;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 6px;
}
#wrapper:after {
    background: #8F1936;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 6px;
}
p, ul {
    padding-bottom: 1rem;
    text-align: justify;
}
.left {
    text-align: left;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.375em;
    line-height: 1.1;
    color: #9C1936;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 0.7rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    font-weight: 400;
    text-decoration: underline;
}
.center {
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
a ins {
    color: #3A00FF;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "\2012";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.5rem;
}
.logo {
    display: flex;
    justify-content: end;
    margin: 0 -3.5rem 0 0;
}
.banner {
    margin: 1rem 0;
}
.banner img {
    border: 2px solid #000;
}
footer {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
    :is(p, ul) {
        text-align: left;
        hyphens: auto;
    }
    p span {
        display: inline-block;
    }
    .logo,footer {
        display: flex;
        justify-content: center;
        margin: 0 0 1rem;
    }
}