@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #575c60;
    font: 400 0.875em/1.3em 'Montserrat', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #575c60;
    background-color: #fff;
    overflow: hidden;
    padding: 0 0 2rem;
}
p {
    padding-bottom: 1rem;
}
h1, h2, h3, strong {
    font-weight: 700;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 2em;
    line-height: 1.3;
    text-align: center;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #575c60;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "»";
    font-size: 1.3em;
    float: left;
    margin-left: -1rem;
    color: #69C350;
}
header {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    background: #BCA78A;
}
article {
    padding: 1rem;
    position: relative;
}
article figure {
    margin: 2rem 0;
}
footer p {
    text-align: center;
}
footer p a {
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 3px;
    border: 1px solid #69C350;
    color: #FFF;
    background: #69C350;
}
footer p a:hover {
    background: #FFF;
    color: #69C350;
}
.bg {
    background: url('bg.jpg') no-repeat top left;
    color: #FFF;
    padding: 1rem 1rem 3rem;
    position: absolute;
    bottom: 17rem;
    right: 7rem;
}
.bg p {
    padding-bottom: 0.5rem;
}
.bg a, p span.color {
    color: #69C350;
}
p span.color, h3, h1 {
    text-transform: uppercase;
}
.flex-s {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.flex-s p {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    align-items: center;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    .flex-s {
        align-items: center;
        justify-content: center;
    }
    .bg {
        right: 1rem;
    }
}
@media only screen and (max-width: 580px) {
    .bg {
        position: static;
    }
}