@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1.25em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 400px;
  margin: 1rem auto;
  border: solid 2px #000;
  background: #4F8AC7 ; 
  background: -webkit-linear-gradient(bottom, #4F8AC7 9%, #FFE069 50%);
  background: -o-linear-gradient(top, #4F8AC7 9%, #FFE069 50%);
  background: -moz-linear-gradient(top, #4F8AC7 9%, #FFE069 50%);
  background: linear-gradient(to top, #4F8AC7 9%, #FFE069 50%);
  overflow: hidden;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 0.8rem;
  font-size: 2em;
  line-height: 1.1em;
  font-style: italic;
}
h1 span {
  font-size: 0.5em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}
article {
  padding: 0.5rem 0.8rem 0;
}
h1 + p {
  font-size: 1.172em;
  line-height: 1.3;
  padding-bottom: 1.75rem;
}
strong {
  font-size: 1.336em;
}
footer {
  position: absolute;
  bottom: 2.75rem;
  right: 0.8rem;
}
article > p:last-of-type {
  padding-bottom: 0.9rem;
}
@media only screen and (max-width:399px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  span {
    display: inline-block;
  }
  footer {
    position: static;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem 0.8rem;
  }
}