﻿@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.eot');
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-700.woff') format('woff'), url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #102E5B;
}

#wrapper {
    position: relative;
    max-width: 760px;
    margin: 1rem auto;
    border: 1px solid #102E5B;
    overflow: hidden;
    background-color: #fff;
    padding: 1rem 1rem 7px;
}

header {
    margin: 0 0 10px;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    margin: 10px 0;
    font-size: 16px;
    line-height: 32px;
    background: #102E5B;
    color: #FFF;
    padding: 3px 10px;
    width: calc(100% - 94px);
}

p {
    margin: 0 0 6px;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #102E5B;
    white-space: nowrap;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media all and (max-width:759px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width:480px) {
    h1 {
        width: 100%
    }

    .flex {
        flex-direction: column;
    } }