@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    background: #F3C73F;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1.3;
}
h1 span {
    font-size: 0.7em;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.188em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
h4 {
    font: 700 3em/1em "Times New Roman", Times, serif;
    margin-bottom: 1rem;
    color: #C9362C;
}
h5 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.logo {
    display: flex;
    justify-content: center;
}
.title {
    background: #C43C34;
    color: #fff;
    padding: 1rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
}
main {
    display: block;
    background: #0D1110;
    padding: 1.25rem 1.5rem;
}
.circle{
    background: #1A1102;
    border: 2px solid #CA9841;
    padding: 1rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: 1rem;
    bottom: 1.5rem;
    font-size: 1.4em;
    line-height: 1.2;
}
.contact{
    background: #C9362C;
    border: 2px solid #CA9841;
    padding: 0.5rem 0.75rem;
    border-radius: 16px;
    position: absolute;
    right: 0.5rem;
    bottom: 2rem;
    font-size: 0.9em;
    line-height: 1.3;
}
.contact a{
    color: #fff;
}
footer {
    padding: 0.75rem 1rem 0.5rem;
    border: 2px solid #CA9841;
    border-top: none;
}
footer :is(p, h5) {
    font-family: 'Roboto Condensed', Arial, sans-serif;
}
footer p{
    font-size: 1.25em;
    line-height: 1.3;
}
figure {
    margin: 0;
}
@media only screen and (max-width:499px) {
    #wrapper {
       
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    h1{
        font-size: 1.6em;
    }
    h4{
        font-size: 2.1em;
    }
    footer{
         border: none;
    }
    .circle{
        position: static;
        margin: 1rem auto;
    }
    .contact{
        position: static;
    }
    .contact a br{
        display: none;
    }
}
