@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Truculenta:opsz,wght@12..72,100..900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #5E3727;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
}
#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #EBD4B2;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  font-size: 2em;
  line-height: 1.3;
  padding: 0.5rem 1rem;
}
h1 span {
  font-weight: normal;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 3.25em;
  line-height: 1.3em;
  background: #5E3728;
  color: #fff;
  font-family: "Truculenta", sans-serif;
  text-transform: uppercase;
  padding: 0 1rem;
  letter-spacing: 1px;
}
h3 span {
  color: #F4CA8B;
}
a {
  color: #5E3727;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 2rem;
}
ul li:before {
  content: url('icon.png');
  float: left;
  margin-left: -2rem;
}
section {
  padding: 1rem 1rem 0;
  background: #FAEEDC url('bg.jpg') top left no-repeat;
  border-top: 2px solid #5E3728;
  border-bottom: 2px solid #5E3728;
}
footer {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  h3 {
    font-size: 2.5em;
  }
  section {
    background-image: none;
  }
  footer {
    position: static;
    flex-direction: column;
    align-items: center;
  }
  footer p {
    text-align: center;
  }
}