@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Yanone+Kaffeesatz:wght@200;300;400;500;600;700&display=swap');
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1.1em;
}

#wrapper {
    position: relative;
    max-width: 565px;
    margin: 1rem auto;
    border: solid 2px #EE1D23;
    background: #fff url('../images/bg.jpg') no-repeat bottom left;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.75em;
    line-height: 1.1em;
    font-family: 'Caveat Brush', cursive;
    color: #EE1D23;
    text-transform: uppercase;
}

h1+p {
    font-weight: 400;
}

h1 span {
    font-size: 0.65em;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

header {
    padding: 0rem 0rem 1rem;
}

article {
    padding: 0rem 2.5rem 0rem;
    position: relative;
    margin-bottom: 2rem;
}

article p span,
article p span a {
    color: #EE1D23;
}

article p span strong,
footer p strong {
    font-weight: 600;
}

article a img {
    position: absolute;
    bottom: 1rem;
    right: 1.75rem;
}

footer {
    padding: 0rem 1.5rem 1rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
    font-size: 92%;
    line-height: 1.1em;
}

footer p a {
    color: #fff;
}

footer p {
    padding-bottom: 0;
}

footer p {
    font-size: 98%;
    font-weight: normal;
}

@media only screen and (max-width:564px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
        font-size: 0.875em;
        line-height: 1.3em;
        background-image: none;
        background-color: #fff;
    }
    p {
        text-align: left;
    }
    article {
        padding: 0 1rem;
    }
    article a img {
        position: static;
    }
    footer {
        padding: 0 1rem 1rem;
        display: block;
    }
    footer p {
        background-color: #EE1D23;
        margin: 0 -1rem 1rem;
        padding: 1rem;
    }
    article p:first-of-type br {
        display: none;
    }
}