@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFE601;
    font: 300 1.1em/1.3em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 730px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #3A7DB3;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
:is(h1, h2, strong, h1 + ul) {
    font-weight: 700;
}
.font {
    font-weight: 500;
    margin-left: 1.5rem;
}
p {
    padding-bottom: 1rem;
}
h1, h1+ul {
    text-transform: uppercase;
}
h1+ul {
    font-size: 1.25em;
    line-height: 1.3em;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #FFE601;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 2em;
    float: left;
    margin-left: -1rem;
}
h1+ul li:before {
    content: "-";
    position: relative;
    float: left;
    font-size: 0.9em;
    margin: -2px 0 0 -1rem;
}
.logo {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.bg>p:last-of-type, footer p {
    text-align: center;
}
.flex {
    justify-content: start;
    display: flex;
    gap: 0 0.5rem;
}
.flex h2 {
    width: 175px;
}
.flex ul {
    width: 440px;
}
.bg :is(h2, p, ul) {
    color: #191700;
}
.bg {
    background: #FFE601;
    padding: 1rem 1rem 0;
    margin-bottom: 0.5rem;
}
.psr {
    position: relative;
}
.pss {
    position: absolute;
    right: -10.4rem;
    top: 0;
}
.pss-f {
    position: absolute;
    bottom: 0rem;
    right: -10.5rem;
}
@media only screen and (max-width:729px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .logo{
        display: flex;
        justify-content: center;
    }
    .logo, .pss, .pss-f{
        position: static;
    }
    .flex{
        flex-direction: column;
    }
    h2,ul{
        width: 100% !important;
    }
    .pss, .pss-f{
        margin-top: -0.5rem;
    }
    .font{
        margin: 0;
    }
    p {
        text-align: left;
    }
}