* {
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 16px auto;
    border: 2px #00427D solid;
    max-width: 510px;
    color: #231F20;
    position: relative;
    padding: 10px 15px;
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    line-height: 20px;
    font-size: 16px;
    text-align: left;
    overflow: hidden;
}

p {
    padding-bottom: 10px;
    text-align: justify;
}

h1 {
    margin: -1px 0 10px;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
}

h1 span {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}

h1 small {
    font-size: 22px;
}

h2 {
    font-size: 13px;
    line-height: 18px;
    margin: 0;
}

a {
    color: #00427D;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
}

footer p {
    padding-bottom: 0;
}

@media only screen and (max-width:510px) {
    #wrapper {
        border: none;
        padding: 16px;
    }

    h1 {
        font-size: 20px;
        line-height: 22px;
    }

    h1 span {
        font-size: 14px;
        line-height: 20px;
    }

    p {
        text-align: left;
    }
}