@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: #000;
  font: 1.8em/1.3em 'Jost', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 400px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  font-size: 0.95em;
  line-height: 1.3;
  color: #00447D;
  font-weight: 500;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin: 0 1rem 1rem;
  color: #F4A71F;
  border-bottom: 2px solid #F4A71F;
  font-weight: 500;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
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 {
  padding: 0.5rem 1rem;
  background: #486388;
  display: flex;
  justify-content: flex-end;
}
article {
  padding: 1rem;
  text-align: center;
}
article p {
    font-size: 0.85em;
    line-height: 1.3;
}
.color {
  color: #F4A71F;
}
.border {
  border-bottom: 2px solid #F4A71F;
  display: inline-block;
}
footer {
  padding: 1rem;
  background: #486388;
  color: #fff;
}
@media only screen and (max-width:399px) {
  body {
    font-size: 1.4em;
  }
  #wrapper {
    border: none;
    margin: 0 auto;
  }
}