@charset "utf-8";

@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');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 400 1.3em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background-color: #E0ECF8;
    border: 3px solid #0F94D3;
    border-radius: 1rem;
    overflow: hidden;
    padding: 0.75rem 1.25rem 0.25rem;
}
p {
    padding-bottom: 0.25rem;
}
h1 {
    margin: 0 0 0.2rem;
    font-size: 1.3em;
    line-height: 1.1em;
    padding-left: 1rem;
}
h1 span {
    font-size: 0.7em;
}
h1:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h1, h2, strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: center;
}
.last {
    background-color: #fff;
    border: 3px solid #0F94D3;
    border-radius: 0.625rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.375rem;
}
footer {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    gap: 1rem 4rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}
.flex p {
    padding: 0;
    width: calc(100% - 3rem);
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p span {
        display: inline-block;
    }
    footer {
        padding: 0;
    }
    footer section {
        width: auto;
    }
    .last {
        text-align: center;
    }
    .flex p {
        width: auto;
    }
}
@media only screen and (max-width: 550px) {
    footer p {
        text-align: center;
    }
    .flex, footer {
        flex-direction: column;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        padding: 0.5rem 1rem;
    }
}