: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: #6e757a;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 480px;
    margin: 16px auto;
    border: 2px solid #36456e;
    background: #fff;
}

article {
    padding: 25px;
    position: relative;
}

footer {
    padding: 25px;
    background: #36456e;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 20px 15px;
    padding: 0 0 0 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #894d85;
    position: relative;
}

h1::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6e757a;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 10px;
}

h2 {
    margin: 0 0 2px;
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;
}

h3 {
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: #d90b84;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #6e757a;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

h3 strong {
    display: block;
}

.logo {
    position: absolute;
    z-index: 3;
    right: 25px;
    top: 10px;
}

footer :is(p, a) {
    color: #fff !important;
}

@media all and (max-width: 479px) {
    #wrapper {
        margin: 0;
        border: none;
        hyphens: auto;
    }

    .logo {
        right: 16px;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 15px 16px;
    }
}

@media all and (max-width: 445px) {
    .logo {
        position: static;
        margin-bottom: 16px;
    }
}