@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1.125em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 815px;
    margin: 1rem auto;
    border: 2px solid #F9A51B;
    background: #fff;
    overflow: hidden;
}
:is(h1, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    text-align: center;
}
:is(h1, h2, h3) {
    color: #F9A51B;
}
h1 {
    margin: 0.5rem 0;
    font-size: 1.5em;
    line-height: 1.1;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
}
ul {
    padding: 0 0 0.5rem 0.125rem;
    list-style: none;
}
li {
    padding: 0 0 0.1rem 1rem;
    background: #fff url('icon_bg.jpg') no-repeat 0 3px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
:is(li, h2) {
    font-size: 0.938em;
    line-height: 1.3;
}
article {
    padding: 0.75rem 1rem 0.5rem;
}
footer {
    padding: 0.5rem 1rem;
    background: #F9A51B;
}
footer p {
    font-weight: 400;
}
@media only screen and (max-width:814px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    body{
        font-size: 1em;
    }
    h1{
        font-size: 1.4em;
    }
}
