: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');
}

body {
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    text-align: center;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 1rem;
    background: #fff;
}

.container {
    background: #00a6ea;
}

header p {
    padding: 16px 16px 0;
    width: 100%;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 6.79rem;
}

article {
    padding: 1rem 1rem 0;
}

h1 span {
    font-weight: 700;
}

.list span {
    display: inline-block;
    margin-right: 1.25rem;
}

footer {
    padding: 0 1rem 1.25rem;
}

p {
    margin: 0 0 0.625rem;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.25rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 0;
    }

    .flex {
        padding: 0 1rem;
    }

    p span {
        white-space: nowrap;
    }
}