@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    text-decoration: underline;
    margin-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 0 1rem 1rem;
    position: relative;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-top: -3rem;
}
.left, .right {
    width: 327px;
    background: #636366;
    padding: 1rem;
}
.right {
    background: #F47D33;
}
.right p{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}
footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: fit-content;
    margin: -19rem auto 5rem;
}
footer p {
    text-align: center;
    color: #636366;
}
.social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    br{
        display: none;
    }
    footer{
        margin: 0 auto;
        padding: 1rem;
    }
}
@media only screen and (max-width:700px) {
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    .flex{
        margin-top: 0;
    }
}