﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 490px;
    margin: 16px auto;
    border: 10px solid #0575bc;
    padding: 10px 18px 16px;
    overflow: hidden;
    color: #231f20;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    background: rgb(204, 226, 242);
    background: -moz-linear-gradient(top, rgb(204, 226, 242) 0%, rgb(200, 224, 241) 50%, rgb(242, 247, 250) 100%);
    background: -webkit-linear-gradient(top, rgb(204, 226, 242) 0%, rgb(200, 224, 241) 50%, rgb(242, 247, 250) 100%);
    background: linear-gradient(to bottom, rgb(204, 226, 242) 0%, rgb(200, 224, 241) 50%, rgb(242, 247, 250) 100%);
}

header {
    gap: 30px;
    padding: 10px 0 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header p {
    flex: 1 1 0;
    font-size: 0.71875rem;
    line-height: 0.90625rem;
}

footer {
    padding: 0 12px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

footer p {
    margin: 0 0 10px;
}

h1 {
    margin: 20px 0 0;
    font-size: 27px;
    line-height: 32px;
    font-weight: 700;
    color: #ed2127;
}

h1 span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #231f20;
}

h2 {
    font-size: 22px;
    margin: 0 0 16px;
    line-height: 26px;
    font-weight: 700;
}

a {
    color: #254a9f;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

@media all and (max-width: 488px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0 auto;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 0 0 16px;
        gap: 16px;
    }

    header p {
        font-size: 14px;
        line-height: 18px;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        margin: 16px 0;
        font-size: 21px;
    }

    br {
        display: none;
    }
}