* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    color: #fff;
}

#wrapper {
    max-width: 546px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #CF138C;
    overflow: hidden;
    position: relative;
}

.logo {
    position: relative;
}

.logo p {
    font-size: 10px;
    position: absolute;
    top: 2%;
    left: 2%;
    color: #000;
    z-index: 2;
}

.logo p a {
    color: #000 !important;
}

.logo>a {
    position: absolute;
    top: 5%;
    right: 2%;
    width: 41%;
    height: 33%;
    z-index: 1;
}

article {
    padding: 10px 16px 0;
}

footer {
    margin: 12px 16px 16px;
    border-top: 2px solid #fff;
    padding-top: 12px;
}

footer p {
    font-weight: 600;
    font-size: 17px;
    word-spacing: 1px;
}

.font strong {
    font-weight: 800;
}

p {
    text-align: center;
}

strong {
    font-weight: 700;
}

h1 small {
    display: block;
    font-size: 28px;
}

h1 {
    text-align: center;
    margin: 0;
    font-size: 47px;
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    padding: 30px 16px 16px;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.nobr {
    white-space: nowrap;
}

@media (max-width: 545px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    footer p {
        word-spacing: 0;
    }

    .logo a {
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }

    p {
        hyphens: auto;
    }

    br:not(.br br) {
        display: none;
    }
}