@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''), url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''), url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.3;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 484px;
    margin: 1rem auto;
    border: 2px solid #000;
    overflow: hidden;
    background-color: #fff;
    padding: 16px;
}

.center {
    text-align: center;
}

h1 span {
    font-size: 18px;
    line-height: 1.25;
}

h1 small {
    font-size: 30px;
    line-height: 0;
    white-space: nowrap;
}

h1 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 33px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
}

p:not(footer p) {
    margin-bottom: 0.5rem;
}

header {
    align-items: center;
    display: flex;
    margin-bottom: 10px;
    gap: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

p span {
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 8px;
    list-style: none;
}

ul li {
    padding-left: 14px;
}

ul li:before {
    content: "\2010";
    color: #000;
    float: left;
    margin-top: -1px;
    font-size: 17px;
    line-height: 1em;
    text-indent: -14px;
}

.margin {
    margin-bottom: 0;
}

.text {
    text-align: justify;
}

@media (max-width: 484px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        hyphens: auto;
    }

    .text {
        text-align: left;
    }
}

@media (max-width: 469px) {
    :is(header, footer) {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    footer p {
        text-align: center;
    }
}