﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 480px;
    margin: 16px auto;
    border: 3px solid #005399;
    padding: 16px;
    overflow: hidden;
    color: #231f20;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    background: url(background.jpg) bottom right no-repeat;
}

header {
    padding: 0 0 16px;
    display: flex;
    justify-content: flex-end;
}

p {
    margin: 0 0 6px;
    text-align: justify;
}

.margin {
    margin: 0 0 1px;
}

h1 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #005399;
}

h2 {
    font-size: 21px;
    line-height: 27px;
    font-weight: 700;
    margin: 16px 0 0;
    color: #005399;
}

a {
    color: #005399;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 479px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    br {
        display: none;
    }

    span {
        white-space: nowrap;
    }

    p {
        text-align: left;
    }
}