@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #242021;
  font: 400 1.063em/1.3 "Barlow", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 630px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #242021;
  background-color: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 0.75rem;
}
h1 {
  margin: 0;
  font-size: 1.25em;
  line-height: 1.3;
}
h1 span {
  font-size: 2.05em;
  line-height: 1;
}
h1 + p {
  font-size: 1.188em;
  line-height: 1.3;
}
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 span {
    display: inline-block;
  }
  h1 span {
    font-size: 1.5em;
  }
  article {
    padding: 0 1rem;
  }
  footer p {
    padding: 0.5rem 1rem;
    text-align: center;
  }
  br {
    display: none;
  }
}