@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: 590px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #64A298;
  background: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 0.5rem;
}
h1 {
  margin: 0 -1rem 1rem;
  font-size: 2em;
  line-height: 1.1em;
  padding: 1rem;
  background: #E0AB7D;
  color: #fff;
  text-align: center;
}
h1 span {
  font-size: 1.25rem;
  display: block;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1.3rem;
}
header p {
  padding: 1rem;
  text-align: center;
}
article {
  padding: 0 1rem;
}
article p:last-of-type {
  text-align: center;
  padding-top: 0.5rem;
}
footer {
  padding: 0.5rem 1rem;
  background: #64A298;
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: bold;
}
footer p {
  padding: 0;
}
footer small {
  display: block;
  font-size: 0.9375em;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width:589px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  footer {
    flex-direction: column;
  }
  footer p {
    text-align: center;
  }
}