@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.3em "Calibri", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #3A648A;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
.center, h1 {
    text-align: center;
}
.center {
    letter-spacing: 1px;
    font-size: 1.15em;
    line-height: 1.3em;
}
h1,h2,ul li:before{
    color: #3A648A;
}
h1 {
    margin: -0.5rem 0 1rem;
    font-size: 2.692em;
    line-height: 1;
    text-align: center;
}
h1 span {
    font-size: 0.6em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul ul li:before {
    content: "»";
}
ul ul li {
    padding-left: 1rem;
}
ul ul{
    padding-bottom: 0;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2rem;
}
ul li:before {
    content: "•";
    position: relative;
    float: left;
    margin-left: -1rem;
}
ul.color li:before{
    color: #000;
}
ul.color {
    margin-top: -1rem;
}
.logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .logo{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .center{
        letter-spacing: normal;
    }
    h1{
        font-size: 1.7em;
    }
}
@media only screen and (max-width:749px) {
    li {
        padding-left: 1rem;
    }
}