@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: 400 1em/1.43em "Jost", Arial, sans-serif;
}
h1, h2, strong {
  font-weight: 500;
}
#wrapper {
  position: relative;
  max-width: 450px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff url('bg.jpg') top left no-repeat;
  overflow: hidden;
  padding: 2rem 2rem 1rem;
}
h1 {
  margin: 0 auto 8rem;
  font-size: 2.692em;
  line-height: 1.2;
  width: fit-content;
}
h1 span {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
  display: block;
  text-align: right;
  margin: 0 1rem;
}
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;
  vertical-align: middle;
}
ul {
  padding: 0 0 3.5rem;
  list-style: none;
}
li {
  padding-left: 1rem;
}
ul li:before {
  content: "\2022";
  float: left;
  font-size: 1.5em;
  font-family: Arial, sans-serif;
  margin: -1px 0 0 -1rem;
}
header {
  position: absolute;
  top: 6.25rem;
  right: 1rem;
}
article > p:first-of-type {
  text-align: center;
}
article > p:last-of-type {
  color: #084EA2;
}
footer {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media only screen and (max-width:449px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
    background: #005BAB;
  }
  h1 {
    margin-bottom: 1rem;
  }
  h1 span {
    margin: 0;
  }
  ul {
    padding-bottom: 1rem;
  }
  header, footer {
    position: static;
    display: flex;
    justify-content: center;
  }
  header {
    margin-bottom: 1rem;
  }
  article > p:last-of-type {
    text-align: center;
    padding: 1rem;
    margin: 0 -1rem 1rem;
    background: #FFDE00;
  }
}