* {
    margin: 0px;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 12px auto;
    border: 1px #000 solid;
    max-width: 480px;
    color: #000;
    position: relative;
    padding: 20px 15px 13px;
    background-color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    overflow: hidden;
}

p {
    padding-bottom: 5px;
}

h1 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.3;
}

h1 span {
    white-space: nowrap;
    font-size: 16px;
}

h2 {
    font-size: 19px;
    line-height: 1.3;
    font-style: italic;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

header {
    width: 100%;
    float: left;
    margin: 0 0 10px;
}

article {
    width: 100%;
    float: left;
}

footer {
    width: 100%;
    float: left;
}

footer img {
    position: absolute;
    bottom: 11%;
    right: 14px;
}

.textleft {
    text-align: left;
    padding-bottom: 15px;
}

h1 small {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: block;
}

@media only screen and (max-width:478px) {
    #wrapper {
        border: none;
        padding: 10px;
    }

    footer img {
        position: static;
        margin-top: 15px;
    }

    .textleft {
        text-align: center;
    }
}