@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: solid thin #000;
    padding: 5rem;
    background: url(../images/background.png) bottom 2.5rem right 2.5rem no-repeat;
    background-size: 60%;
    background-color: #fff;
    overflow: hidden;
}

h1 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 1.25rem 0;
}

h1 span {
    display: block;
    padding-top: .3rem;
    font-weight: normal;
    font-size: .8em;
}

h2 {
    font-size: 1rem;
    line-height: 1.4;
    color: #F08A00;
    margin: 0 0 .625rem;
}

h3 {
    font-size: 1.187rem;
    line-height: 1.4;
    color: #F08A00;
    margin: 0 0 .625rem;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #F08A00;
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
    text-align: justify;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

p span {
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

ul li {
    padding-left: 3.312rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .25rem;
    height: .25rem;
    border-radius: 50%;
    border: 0.0625rem solid #000;
    background: #fff;
    margin-left: -2.125rem;
    top: 0.4375rem;
}

header {
    display: flex;
    justify-content: right;
}

.margin {
    margin: 1rem 0;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 1rem;
        background: url(../images/background.png) bottom right no-repeat;
        background-size: contain;
    }

    #wrapper>img {
        margin: 20px auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem
    }

    h1 br {
        display: none;
    }

    p {
        text-align: left
    }

    h2 {
        margin: 0 0 .312rem;
    }

    ul li {
        padding-left: .937rem;
    }

    ul li:before {
        margin-left: -.937rem;
    }
}

@media only screen and (max-width: 30rem) {
    header {
        justify-content: center;
    }

    h1 {
        text-align: center;
    }
}