@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: #2E75B6;
    font-size: 1.5rem;
    margin: 1rem 0;
}

h3 {
    font-size: 1.1rem;
    color: #767171;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.3em;
    margin-bottom: 1rem;
    color: #2E75B6;
}

ul {
    margin: 0 0 1rem 1.25rem;
}

.no-margin {
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem;
}

header img {
    border: 4px solid #dadada;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
    position: absolute;
    right: 3rem;
    top: 4rem;
}

article div {
    padding: 1rem 2rem;
    background: #dadada;
    margin-bottom: 1.5rem;
    color: #2E75B6;
}

footer {
    display: flex;
    justify-content: flex-end;
}

.logo {
    margin: 1.5rem 3rem 2rem 1rem;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        flex-direction: column-reverse;
        align-items: center;
    }
    header img {
        position: static;
        margin-bottom: 1.5rem;
    }

    header div {
        width: 100%;
    }
    h1 br,
    h3 br {
        display: none;
    }

    footer {
        justify-content: center;
    }

    .logo {
        margin: 2rem 0;
    }
}
@media only screen and (max-width:480px) {
    header,
    article div {
        padding: 1rem;
    }
}