:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #4c4d4f;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 505px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
}

article {
    padding: 20px 35px;
}

footer {
    padding: 0 16px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 11px;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px 17px;
    padding: 0 0 0 24px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    position: relative;
}

h1::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #e41c3c;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

h2 {
    margin: 0 0 22px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.fontsize {
    font-size: 16px;
    margin-right: 5px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #4c4d4f;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #e41c3c !important;
}

h3 {
    color: #e41c3c;
}

p small {
    font-size: 12px;
    line-height: 20px;
    display: block;
}

h2 span {
    display: block;
}

@media all and (max-width: 504px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    article {
        padding: 16px;
    }
}