@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;
}

#wrapper {
    position: relative;
    max-width: 950px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 30px 80px;
}

span {
    white-space: nowrap;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    color: #E26C09;
    text-align: center;
}

h2 {
    color: #00AFEF;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

h3 {
    font-size: 1.1rem;
    text-decoration: underline;
    margin: 0 0 10px;
}

.center {
    margin: 8px 0 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #0000FF;
    text-decoration: underline;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

footer p {
    text-align: left;
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

ul li {
    padding-left: 55px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 25px;
    height: 25px;
    background: url(../images/arrow.jpg) no-repeat;
    background-size: contain;
    margin-left: -30px;
    top: 0;
}

hr {
    border: none;
    border-bottom: 1px solid #000;
}

header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.little_image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 0 0 1rem;
}

footer {
    padding-top: 2rem;
}

@media only screen and (max-width: 849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
        margin: 0 0 1rem;
    }

    .center {
        text-align: center;
    }

    h1 {
        font-size: 1.45rem;
        line-height: 1.4;
        margin: 1.2rem 0;
    }

    h1 br {
        display: none;
    }

    h2 {
        margin: 0 0 8px;
    }

    header,
    .little_image {
        justify-content: center;
    }

    footer {
        padding-top: 0;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.25rem;
    }

    ul li {
        padding-left: 1.375rem
    }

    ul li:before {
        margin-left: -1.375rem;
    }

    footer p,
    h3 {
        text-align: center;
    }
}