﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 627px;
    margin: 16px auto;
    border: 3px solid #eb1f2c;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

article {
    padding: 3px 16px 24px;
    position: relative;
}

figure {
    position: absolute;
    bottom: 12px;
    right: 4px;
    z-index: 6;
}

footer {
    padding: 10px 20px;
    background: #eb1f2c;
}

footer p {
    text-align: center;
    color: #fff;
}

footer a {
    color: #fff;
}

.p {
    padding-bottom: 20px;
}

h1 {
    margin: 30px 0 30px 30px;
    padding: 0;
    font-size: 23px;
    line-height: 30px;
    font-weight: 600;
}

h1 span {
    font-size: 18px;
}

h1:before {
    content: '\25A0';
    color: #eb1f2c;
    float: left;
    margin-top: -1px;
    font-size: 15px;
    text-indent: -30px;
}

a {
    color: #231f20;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media all and (max-width: 627px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    figure {
        position: static;
        display: flex;
        justify-content: center;
        margin: 12px 0 0;
    }

    h1 {
        margin-left: 20px;
    }

    h1:before {
        text-indent: -20px;
    }

    p {
        text-align: left;
    }

    article br {
        display: none;
    }

    span {
        white-space: nowrap;
    }
}