@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.4em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 670px;
    margin: 1rem auto;
    border: solid 2px #EE1D23;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.6rem;
}
h1, h1+p {
    color: #fff;
}
h1 {
    margin-left: 0.9rem;
    font-size: 1.3em;
    line-height: 1.1em;
}
h1 span {
    font-size: 1rem;
}
h1+p {
    padding-left: 0.9rem;
}
h2 {
    font-size: 2.48em;
    line-height: 1.2;
}
h2+p {
    font-size: 1.8em;
    line-height: 1.3em;
}
h2, p span.color {
    color: #EE1D23;
}
p span.color {
    font-weight: bold;
}
h1:before {
    content: "•";
    font-size: 1em;
    float: left;
    margin-left: -0.9rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 1rem 1.5rem 0.5rem 1.25rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
header p {
    padding-bottom: 0.3rem;
}
article {
    padding: 0 1.25rem;
}
.title {
    background: #EE1D23;
    margin: 0 -2.25rem 1.25rem;
    padding: 1rem 2.25rem 0.5rem;
}
.social p {
    text-align: center;
    padding-bottom: 0;
}
.flex {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    padding-top: 0.4rem;
}
.social {
    transform: rotate(13deg);
    position: absolute;
    bottom: 90px;
    right: 54px;
}
footer {
    padding: 0.75rem 2.25rem 1.25rem;
}
@media only screen and (max-width:669px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .txt {
        width: 100%;
    }
    .social {
        right: 100px;
    }
    p :is(a,span)  {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    header, article, footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .social {
        position: static;
        transform: rotate(0deg);
    }
    h2{
      font-size: 1.7em;
    }
    h2+p{
      font-size: 1.4em;
    }
}