@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.25em/1.3em 'Roboto Condensed', Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 620px;
    margin: 1rem auto;
    border: 6px solid #F68B1F;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0.5rem;
    border-radius: 50px;
}
strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #F68B1F;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2, .color{
    color: #F68B1F;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 2.5em;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}
h1 span{
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
}
h2 {
    font-size: 2em;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
h2 span, h1 small{
    color: #000;
    font-size: 1.125rem;
    line-height: 1.3;
    display: inline-block;
}
h2+p{
    padding-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.text {
    margin: -2rem 0 0.5rem;
}
article>p:nth-of-type(2) {
    margin-top: 0.5rem;
}
footer p {
    color: #2EB165;
    font-size: 1.25em;
    line-height: 1.3;
}
@media only screen and (max-width:619px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    .text {
        margin-top: 0;
    }
    .title {
        flex-direction: column;
        align-items: center;
    }
    .title p, h1, h2 {
        width: 100%;
    }
}