@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 650px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #D2232A;
    border-bottom-width: 0.5rem;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.5rem;
}
p a.color {
    color: #D1232A;
    font-size: 1.6em;
    line-height: 1.3em;
}
hr {
    border: none;
    background: #D1232A;
    height: 3px;
    width: 75px;
    margin: 0.5rem auto;
    text-align: center;
}
h1 {
    margin: 0 -1rem 0.5rem;
    padding: 0.5rem 4rem 0.5rem 4rem;
    font-size: 1.692em;
    line-height: 1.1;
    text-align: center;
    background: #EDEDED;
}
h1, h3 {
    font-family: "Roboto Slab", "Times New Roman", serif;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 2em;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
}
h3 + p {
    text-align: center;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
    width: 63%;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "»";
    display: inline-block;
    font-size: 1.25em;
    color: #D2232A;
    position: relative;
    float: left;
    margin-top: -1px;
    margin-left: -1rem;
}
header {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.abs {
    position: absolute;
    bottom: 0;
    right: 2rem;
}
footer {
    position: absolute;
    bottom: 5.5rem;
    right: 1rem;
}
@media only screen and (max-width:649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    ul {
        width: auto;
    }
    li {
        padding-left: 1rem;
    }
    header{
        position: static;
        padding-bottom: 1rem;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
    p :is(a,span){
        display: inline-block;
    }
    h1{
        padding: 0.5rem 1rem;
    }
    p a.color{
        font-size: 1.4em;
    }
    .abs {
        position: static;
    }
}