@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.4;
}
#wrapper {
    position: relative;
    max-width: 645px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h2 {
    color: #fff;
    font-size: 2.8em;
    line-height: 1.1;
}
h1, h3 {
    font-size: 1.7em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
:is(h1, h3) span {
    font-weight: 400;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
h1, h3 {
    font-family: Arial, sans-serif;
    color: #fff;
}
header {
    padding: 0.8rem 1rem 1rem;
    text-align: center;
    background: #2C3740;
}
article {
    padding: 0.75rem 1.5rem 0;
    background: url('bg.jpg') bottom right no-repeat;
}
section {
    background: #F04D22;
    margin: 0 -1.5rem 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
section div {
    flex: 1;
}
aside {
    width: 360px;
}
.small {
    font-size: 0.75em;
    line-height: 1.3;
    position: absolute;
    bottom: 5rem;
    right: 1rem;
    width: 220px;
}
aside p:last-of-type {
    padding-top: 0.5rem;
}
footer {
    padding: 0.75rem 1rem 0.5rem 1.5rem;
    background: #2C3740;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer a:last-of-type {
    margin-top: 0.85rem;
}
@media only screen and (max-width:644px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    h1, h3 {
        hyphens: auto;
    }
    article {
        padding: 0.75rem 1rem 0;
        background: #fff;
    }
    section {
        flex-direction: column;
        align-items: center;
    }
    section div {
        width: 100%;
    }
    aside {
        width: auto;
    }
    footer {
        padding-left: 1rem;
    }
    .small {
        position: static;
        width: auto;
    }
    li {
        font-size: 1.5em;
    }
    h2 {
        font-size: 2em;
    }
}