@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-transform: uppercase;
    color: #000;
    font: 300 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #E0D8CD;
    overflow: hidden;
    padding: 1rem;
}
:is(h2, h3, strong) {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -4rem 0 1rem;
    font-size: 1em;
    line-height: 1;
    border-bottom: 5px solid #8B2C12;
    display: inline-block;
    padding: 0.5rem 3rem 0.5rem 0;
    font-family: Cambria, Times, "Times New Roman", serif;
}
h1 span {
    font-size: 2.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    color: #A84433;
}
h3 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}
h3 span, h3 a{
    color: #E0D8CD;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-left: -1rem;
    color: #A84433;
}
header{
    display: flex;
    justify-content: space-between;
    gap:  0 2rem;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
footer p{
    margin-top: 1rem;
    font-size: 1.6em;
    line-height: 1.3em;
    color: #A84433;
    padding-bottom: 0;
}
footer .bg {
    background: #A84433;
    padding: 1rem 0.5rem 0;
    width: 43%;
}
footer .bg  figure{
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    footer{
        flex-direction: column;
    }
    footer figure{
        display: flex;
        justify-content: center;
    }
    footer p{
        text-align: center;
    }
    footer .bg{
        width: auto;
        margin: 1rem 0;
    }
    p span{
        display: inline-block;
    }
    p {
        text-align: left;
    }
}