@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 0.875em/1.3em Calibri, sans-serif;
    color: #fff;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 840px;
    border: solid 1px #000;
    background: #15263B url('../images/bg.jpg') no-repeat top right;
    padding: 1.5rem 4rem 1rem 2rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.892em;
    line-height: 1.1em;
}

h1 small {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 10px;
}

ul li:before {
    content: "\2022";
    font-size: 0.6em;
    float: left;
    margin: 0 0 0 -10px;
}

header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header p {
    padding-top: 1rem;
}

article {
    padding: 1rem 0 0;
}

footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 61.5%;
    position: absolute;
    right: 4.5rem;
    bottom: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 1rem;
    }

    br {
        display: none;
    }

    footer {
        position: static;
        width: 100%;
    }

    p :is(span, a) {
        display: inline-block;
    }
}