@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #242021;
  font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 630px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #242021;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1.25em;
  line-height: 1.3;
}
h1 span {
  font-size: 2em;
  line-height: 1;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 0.5rem;
  list-style: none;
}
li {
  padding-left: 0.75rem;
}
ul li:before {
  content: url('icon.jpg');
  float: left;
  margin: -1px 0 0 -0.75rem;
}
article {
  padding: 0 1.5rem;
}
footer p {
  padding: 0.5rem 1.5rem;
  text-align: right;
  color: #fff;
  background: url('bg.jpg') center center no-repeat;
  font-size: 1.25em;
  line-height: 1.3;
  background-size: cover;
}
@media only screen and (max-width:629px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  article {
    padding: 0 1rem;
  }
  footer p {
    padding: 0.5rem 1rem;
    text-align: center;
  }
  br {
    display: none;
  }
}