@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: 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;
}

body {
    color: #fff;
    font: 400 1em/1.5em 'Roboto Condensed', Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 691px;
    margin: 1rem auto;
    border: solid 2px #000;
    background: #2D3036 url('../images/background.jpg') top left no-repeat;
    overflow: hidden;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

p {
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

h1 {
    margin: 14px 0 16px 62px;
    font-size: 1.38em;
    line-height: 1.3;
}

h1+h2 {
    margin: 0 0 16px 18.5rem;
}

h2 {
    margin: -10px 0 16px;
    font-size: 1.5em;
    line-height: 1.3;
}

h3 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 0;
}

h3+p {
    font-size: 1.04em;
    line-height: 1.3;
}

ul {
    padding: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

article {
    padding: 4px 32px 4px;
}

footer {
    padding: 0 32px;
}

@media only screen and (max-width:690px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }

    h1 {
        padding: 0.5rem 1rem;
        background: #E71D29;
        margin: 0 0 1rem;
        text-align: center;
        font-size: 1.6em;
    }

    h2 {
        margin: 16px 0;
    }

    article {
        padding: 0.5rem 1rem 0;
    }

    footer {
        padding: 0 1rem;
    }

    h1+h2 {
        margin-left: 0;
    }

    h1+h2 a {
        text-decoration: underline !important;
        text-decoration-color: #E71D29 !important;
    }

    span {
        display: inline-block;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}