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