@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Office:ital,wght@0,1..1000;1,1..1000&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #323031;
  font: 1em/1.3em "Ysabeau Office", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 550px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #065096;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem 1rem 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 0.25rem;
  font-size: 1.692em;
  line-height: 1.1em;
  text-align: center;
  padding: 0.25rem 1rem 0.5rem;
  background: #065096;
  color: #fff;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
}
h3 {
  font-size: 1.5em;
  line-height: 1.3em;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #065096;
}
a {
  color: #323031;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1.3rem;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}
header p {
  flex: 1;
  padding: 0;
}
hr {
  border: 1px solid #065096;
  margin-bottom: 0.5rem;
}
footer p {
  text-align: center;
}
@media only screen and (max-width:549px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p span {
    display: inline-block;
  }
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}