﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 510px;
    margin: 12px auto;
    border: 1px solid #231f20;
    padding: 41px 21px 10px 65px;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    position: relative;
}

#wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 57px;
    background-color: #EE1C25;
}

#wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 100px;
    background-color: #EE1C25;
}

article {
    position: relative;
}

article img.img-qr {
    position: absolute;
    bottom: 11px;
    right: 45px;
}

footer {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

footer p {
    margin-bottom: 0;
}

p {
    margin: 0px 0px 20px;
}

hr {
    width: 100%;
    border: none;
    height: 5px;
    background: #ed1c24;
    margin-bottom: 18px;
}

.width {
    width: 98%;
}

.font-size {
    font-size: 15px;
    line-height: 21px;
    margin: 0 0 10px;
}

h1 {
    margin: 11px 0 0;
    padding: 0px 0px 10px;
    font-size: 24px;
    line-height: 29px;
    color: #ed1c24;
}

h1+p {
    font-size: 19px;
    line-height: 26px;
}

h1 span {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

h2 {
    font-size: 18px;
    margin: 0 0 18px;
    padding: 0 0 3px;
    line-height: 20px;
    border-bottom: 1px dashed #e90000;
}

a {
    color: #231f20;
    text-decoration: none;
}

img {
    max-width: 100%;
    border: none;
}

.word {
    white-space: nowrap;
}

@media all and (max-width: 509px) {
    #wrapper {
        padding: 16px;
        margin: 0;
        background: none;
        border: none;
        height: auto;
    }

    footer br {
        display: block;
    }

    .width {
        width: 100%;
    }

    br {
        display: none;
    }

    #wrapper::before {
        display: none;
    }

    #wrapper::after {
        display: none;
    }
}