@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: local(''), url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), url('../fonts/roboto-v30-latin-500.woff') format('woff'), url('../fonts/roboto-v30-latin-500.ttf') format('truetype'), url('../fonts/roboto-v30-latin-500.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: local(''), 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');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-v30-latin-900.eot');
    src: url('../fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-900.woff2') format('woff2'), url('../fonts/roboto-v30-latin-900.woff') format('woff'), url('../fonts/roboto-v30-latin-900.ttf') format('truetype'), url('../fonts/roboto-v30-latin-900.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #050607;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 666px;
    margin: 16px auto;
    border: 1px solid #cbcbcb;
    background: rgb(218, 235, 249);
    background: -moz-linear-gradient(top, rgb(224, 249, 255) 0%, rgb(138, 216, 255) 50%, rgb(36, 182, 238) 100%);
    background: -webkit-linear-gradient(top, rgb(224, 249, 255) 0%, rgb(138, 216, 255) 50%, rgb(36, 182, 238) 100%);
    background: linear-gradient(to bottom, rgb(224, 249, 255) 0%, rgb(138, 216, 255) 50%, rgb(36, 182, 238) 100%);
}

header {
    padding: 30px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

header p {
    color: #27abe2;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    margin-right: 6px;
}

header strong {
    font-weight: 900;
}

article {
    padding: 0 26px 10px;
}

.title {
    display: flex;
    justify-content: center;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex div {
    width: 44%;
}

.background {
    background: #27a5dd;
    padding: 0 26px 6px;
}

.font {
    font-size: 12px;
    line-height: 1.5;
}

p {
    margin: 0 0 16px;
}

span {
    white-space: nowrap;
}

:is(h1, h2, footer p) {
    text-align: center;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 22px;
    font-size: 26px;
    line-height: 1.4;
    background: #27a5dd;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 60px;
}

h2 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 30px;
}

h3 {
    margin: 0 0 8px;
    font-size: 27px;
    line-height: 1;
    background: #27a5dd;
    display: inline-block;
    color: #fff;
    padding: 16px 25px;
    border-radius: 25px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #050607;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 40px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 25px;
    text-indent: -16px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media all and (max-width: 665px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 0 16px 16px;
    }

    .flex div {
        width: 48%;
    }

    .background {
        padding: 6px 16px;
    }

    .font {
        font-size: 14px;
        line-height: 1.4;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h3 {
        padding: 16px;
    }

    ul li {
        padding-left: 32px;
    }

    article br {
        display: none;
    }
}

@media all and (max-width: 563px) {
    .flex {
        display: block;
    }

    .flex div {
        width: 100%;
    }

    h3 {
        margin: 16px 0 8px;
    }
}

@media all and (max-width: 424px) {
    header br {
        display: none;
    }

    header p {
        margin-right: 0;
        hyphens: none;
        text-align: center;
    }
}