﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 550px;
    margin: 12px auto;
    border: 10px solid #003067;
    background: #fff;
    color: #003067;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

footer {
    display: flex;
    justify-content: space-between;
    padding-top: 9px;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 41px 20px 20px;
}

h2 {
    font-size: 26px;
    margin: 0 0 30px;
    line-height: 32px;
    font-weight: 400;
}

a {
    color: #003067;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.image {
    margin-top: 5px;
    margin-right: -10px;
    margin-left: -10px;
    position: relative;
    z-index: 555;
}

.icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

h1 {
    font-size: 24px;
    line-height: 24px;
    padding: 0 20px 20px;
}

h1 span {
    font-weight: normal;
    font-size: 16px
}

.qrcode {
    position: relative;
    padding: 0 0 0 175px;
}

.qrcode img {
    position: absolute;
    top: 4px;
    left: 51px;
}

@media all and (max-width: 549px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .image {
        margin: 15px -15px 10px 0;
    }
}

@media all and (max-width: 480px) {

    header,
    footer {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .qrcode img {
        position: static;
        margin: 1rem auto;
        display: flex;
    }

    .qrcode {
        padding: 0 1rem;
    }

    .qrcode br {
        display: none;
    }
}