@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #fff;
  font: 1.125em/1.3em "Jost", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 524px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #EE293E url('bg.jpg') bottom right no-repeat;
  overflow: hidden;
  padding: 2rem 3rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 2rem;
  font-size: 1.692em;
  line-height: 1.3;
  text-align: center;
}
h1 span {
  display: block;
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding: 0 0 0.25rem 2.5rem;
}
ul li:before {
  content: url('icon.jpg');
  float: left;
  margin: -1px 0 0 -2.5rem;
}
header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
article p {
  padding-left: 2.5rem;
}
footer {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
}
@media only screen and (max-width: 523px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  p {
    text-align: left;
  }
  header {
    justify-content: center;
  }
  article p {
    padding: 0 0 1rem;
    text-align: center;
  }
  footer {
    position: static;
  }
  footer p {
    text-align: center;
  }
}