@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    max-width: 770px;
    margin: 1rem auto;
    border: solid 2px #003299;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}

h1 {
    margin: 0 0 1rem;
    font-size: 1.8em;
    text-align: center;
    line-height: 1.4;
    color: #003299;
}

.center {
    text-align: center;
}

h1 small {
    font-size: 0.65em;
    display: block;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    color: #003299;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding-left: 2rem;
}


li:before {
    content: "•";
    font-size: 1.3em;
    margin: -3px 0 0 -2rem;
    float: left;

}

article {
    padding: 0.25rem 1rem;
}


h1,
h2,
.blue {
    color: #0032CC;
}

.flex {
    margin-bottom: 1rem;
}

.flex p {
    display: flex;
    justify-content: space-between;
    padding-right: 1rem;
    flex-wrap: wrap;
    gap: 0 1rem;
    padding: 0;
}

.flex p span {
    width: 30%;
    min-width: fit-content;
}

footer {
    padding: 1.8rem 1rem 0.5rem;
    background: url('../images/bg.jpg') top right no-repeat, #003396;
}
footer p {
    padding: 0;
    text-align: center;
    font-size: 1.25em;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #fff;
}
small {
    font-size: 0.85em;
    line-height: 1.3;
}
figure {
    position: absolute;
    bottom: 140px;
    right: 3rem;
}

@media only screen and (max-width:769px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    br {
        display: none;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .flex {
        display: block;
    }

    figure {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    li {
        padding-left: 1.5rem;
    }

    p {
        text-align: left;
    }
}