* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 750px;
    margin: 16px auto;
    border: 5px solid #65B32E;
    background-color: #fff;
    overflow: hidden;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .background .link {
    background: url(background.png) no-repeat;
    max-width: 309px;
    height: 40px;
    text-align: center;
    padding: 10px;
    margin: 2px auto;
    background-size: 100% 100%;
    font-size: 16px;
}

#wrapper .flex {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

#wrapper .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#wrapper .link a {
    color: #fff !important;
    transform: rotate(-2deg);
    display: inline-block;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.left {
    flex: 1 1 0;
}

.right {
    width: 54%;
    padding: 0 16px 0 25px;
}

#wrapper .header p {
    color: #fff;
    font-size: 20px;
}

#wrapper .header p .big {
    font-size: 30px;
}

#wrapper .background {
    background: #E6F0DA;
    padding: 30px 10px;
    margin-top: 15px;
}

#wrapper .background p {
    font-size: 18px;
}

#wrapper .qrcode {
    display: flex;
    justify-content: end;
    margin: -70px 23px 10px 0;
}

#wrapper .color {
    color: #65B32E;
}

#wrapper hr {
    border: none;
    margin: 6px 0;
    border-bottom: 3px solid #65B32E;
}

#wrapper .logo {
    background: #65B32E;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
}

#wrapper .header {
    padding: 15px;
    background: #65B32E;
}

#wrapper .article {
    padding: 10px 0;
    background: url(background3.jpg) no-repeat;
    background-size: cover;
}

#wrapper .footer {
    padding: 10px 16px 5px;
    background: #65B32E;
}

#wrapper .footer p {
    text-align: center;
    font-family: "Roboto", Arial, sans-serif;
    color: #fff;
    font-weight: 500;
}

#wrapper .footer p a {
    color: #fff !important;
}

#wrapper p {
    margin-bottom: 0;
}

#wrapper strong {
    font-weight: 900;
}

#wrapper h1 {
    margin: -23px 50px 12px;
    font-size: 35px;
    font-weight: 700;
    background: #E6F0DA;
    padding: 12px 20px;
    text-align: center;
    border: 3px solid #65B32E;
    color: #65B32E;
    line-height: 1;
}

#wrapper h1 span {
    font-size: 24px;
}

#wrapper h2 {
    font-size: 32px;
    font-family: "Patrick Hand", cursive;
    color: #fff;
    font-weight: 400;
    background: url(background2.png) no-repeat;
    max-width: 312px;
    text-align: center;
    height: 39px;
    background-size: 100% 100%;
    margin: 0 auto 8px;
}

#wrapper h3 {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 900;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -3px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 749px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 679px) {
    #wrapper .right {
        width: 100%;
        padding: 16px;
    }

    #wrapper h1 {
        margin: -20px 16px 12px;
    }
}