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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 601px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    padding: 16px;
}

#wrapper .position {
    position: relative;
}

#wrapper .logo {
    position: absolute;
    top: 10px;
    right: 0;
}

#wrapper .text p {
    background: url(bottom.jpg) top left, url(top.jpg) top right;
    background-repeat: no-repeat;
    background-color: #349a34;
    color: #fff;
    display: inline-block;
    padding: 4px 14px 2px 14px;
    margin-bottom: 0;
    font-size: 16px;
}

#wrapper .shape:before {
    content: "";
    width: 200px;
    height: 60px;
    float: right;
}

#wrapper .text {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 17px;
    justify-content: space-around;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .center {
    text-align: center;
}

#wrapper .flex {
    display: flex;
    padding-right: 5%;
    justify-content: space-between;
    column-gap: 10px;
    flex-wrap: wrap;
}

#wrapper .flex p {
    color: #008000;
}

#wrapper .hide {
    display: none;
}

#wrapper p {
    margin-bottom: 12px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    text-align: center;
    margin: 15px 0;
    font-size: 26px;
    font-weight: 700;
    color: #008000;
}

#wrapper h3 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #008000;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #008000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 19px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: "\0025a0";
    font-size: 12px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 3px;
    line-height: 1;
    left: 0;
    color: #008000;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 600px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    #wrapper .shape:before {
        display: none;
    }

    #wrapper ul {
        margin-left: 0;
    }
}