@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em "Ubuntu", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 530px;
    margin: 1rem auto;
    border: 2px solid #3AB54A;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.5rem 0 0.5rem;
    font-size: 1.75em;
    line-height: 1.1;
    color: #3AB54A;
}
h1 span {
    font-size: 1rem;
}
.re{
    position: relative;
    z-index: 1;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3;
    color: #999999;
    margin-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    position: absolute;
    right: 3px;
    bottom: 3px;
}

@media only screen and (max-width:529px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a {
        white-space: nowrap;
    }
    br:not(footer br) {
        display: none;
    }
    h1{
        font-size: 1.5em;
    }
    header{
        position: static;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
}
