@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.4em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('bg.jpg') bottom 0 center no-repeat;
    overflow: hidden;
    padding: 2rem 2.25rem 1rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h2, h3, h4 {
    text-transform: uppercase;
}
h1 {
    margin: 0 0 8.25rem;
    font-size: 3.9em;
    line-height: 1;
    font-weight: normal;
}
h2 {
    font-size: 1.063em;
    line-height: 1.3;
    margin-bottom: 0.125rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 span {
    display: inline-block;
    margin-top: 0.35rem;
}
h4 {
    font-size: 1.8em;
    line-height: 1.3;
    margin: 2rem 0 0;
    color: #F36E21;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 0.8rem;
    position: relative;
}
li:before {
    content: "\2012";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 5rem 0 5.5rem;
}
article section {
    max-width: 250px;
    width: max-content;
    margin-left: auto;
    color: #fff;
}
article section p:last-of-type {
    font-size: 0.8em;
    line-height: 1.35;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0 1.5rem;
}
footer figure {
    margin: 0 0 1rem;
}
@media only screen and (max-width:839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
        background: #fff;
    }
    p :is(span, a) {
        display: inline-block;
    }
    br {
        display: none;
    }
    h1 {
        margin-bottom: 1.5rem;
        font-size: 3em;
    }
    h4 {
        color: #fff;
        margin-top: 0;
    }
    article {
        padding: 1.5rem 0;
    }
    article section {
        background: #F36E21;
        max-width: 100%;
        width: auto;
        padding: 1rem;
    }
}
@media only screen and (max-width:650px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.313em;
    }
    footer {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    footer section {
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width:400px) {
    h1 {
        font-size: 1.692em;
    }
}