@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 0.875em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
.bb{
    border-bottom: 1px solid #FFF;
    margin-right: -2rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
h2 {
    font-size: 3.2em;
    line-height: 1;
    margin: 1rem 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
main{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0 0.3rem;
}
 article {
    width: 47%;
}
header{
    width: 53%;
}
header img{
    display: block;
}
article{
    padding: 2rem 2rem 1rem;
    border-top-left-radius: 30px;
    background: url('../images/bg.jpg') no-repeat top right #C8171F;
}
footer{
    padding: 1rem 2rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
     main{
        flex-direction: column;
     }
     header, footer{
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
     }
     article{
        background: #CB181E;
     }
     article, header{
        width: auto;
     }
     .hide_m{
        display: none;
     }
     h1{
        padding-right: 2rem;
     }
     h2{
        font-size: 2em;
     }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 1rem;
    }
}