@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-align: center;
    color: #FFF;
    font: 1.3em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #89877F;
    background: url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 2rem 2rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 4.8rem 0;
    font-size: 1.1em;
    line-height: 1.3;
    text-align: left;
    padding-left: 5rem;
}
h1:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header{
    display: flex;
    justify-content: center;
}
footer{
    display: flex;
    justify-content: flex-end ;
    gap: 0 0.2rem;
    align-items: flex-end;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background-size: cover;
    }
    p :is(a,span){
        display: inline-block;
    }
}
@media only screen and (max-width:555px){
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
}
@media only screen and (max-width:480px){
     #wrapper {
        background: #9C9E9F;
     }
     footer{
        justify-content: center;
     }
     h1{
        margin: 1rem 0;
        padding: 0 0 0 1rem;
     }
}