:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: transparent;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 500px;
    margin: 16px auto;
    overflow: hidden;
    background: #fff url('../images/background.jpg') no-repeat 0 0;
    background-size: 100%;
}

h1 {
    padding: 0 32px 16px 16px;
    font-size: 30px;
    line-height: 1.125;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 1%;
    left: 0;
    width: 100%;
}

h1 strong {
    display: block;
    font-size: 1.3em;
}

h2 {
    margin: 16px 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

p:not(:last-of-type) {
    margin-bottom: 16px;
}

header {
    text-align: center;
    padding: 10px 0 8px 3px;
}

header img {
    opacity: 0;
}

article {
    position: relative;
}

footer {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 7%;
    left: 4%;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 16px;
    list-style: none;
    position: absolute;
    top: 21%;
    right: 5%;
    font-size: 20px;
    line-height: 1.4;
}

ul li {
    padding-left: 12px;
    margin: 0 0 6px;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-top: -3px;
    font-size: 20px;
    line-height: 1em;
    text-indent: -12px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

@media all and (max-width:500px) {
    #wrapper {
        margin: 0;
        border: none;
        font-size: 3.25vw;
    }

    ul {
        hyphens: auto;
        text-wrap: pretty;
    }

    header {
        text-align: center;
        padding: 3% 0 0 3px;
    }

    br:not(footer br) {
        display: none;
    }

    h1 {
        margin: 0;
        font-size: 5.9vw;
    }

    ul {
        font-size: 4vw;
        line-height: 1.4;
    }

    footer {
        font-size: 4.75vw;
    }

    .logo img {
        width: 50%;
    }
}