: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: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
}

#wrapper {
    max-width: 455px;
    margin: 16px auto;
    border: 1px solid #0e85c3;
    padding: 10px 16px;
    background: #faf7c9;
}

footer {
    padding: 50px 0 5px;
    position: relative;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 15px 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #0e85c3;
}

h1 span {
    position: relative;
    padding-left: 18px;
}

h1 span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0e85c3;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 10px;
}

h2 {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.logo a:nth-of-type(1) img {
    position: absolute;
    z-index: 3;
    left: -11px;
    bottom: -3px;
}

.logo a:nth-of-type(2) img {
    position: absolute;
    z-index: 3;
    right: -11px;
    bottom: -3px;
}

@media all and (max-width: 454px) {
    #wrapper {
        margin: 0;
        border: none;
        hyphens: auto;
    }

    p {
        hyphens: auto;
    }

    .logo {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    footer {
        padding-top: 10px;
    }

    .logo img {
        position: static !important;
    }
}