@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2D1306;
    font: 400 1em/1.3em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 590px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 10px #82B044;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
h1,h2,strong{
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1,h2{
    color: #000;
}
h1 {
    margin: 1rem 0 0.5rem;
    font-size: 2.2em;
    line-height: 1.1;
}
h1 span {
     font-weight: normal;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 0;
}
h2 span{
    color: #82B044;
}
a {
    color: #2D1306;
    text-decoration: none;
    display: inline-block;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 1rem 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header, footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 0 1rem;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    h1{
        font-size: 1.7em;
    }
    .hide_m{
        display: none;
    }
}