@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 550px;
  margin: 1rem auto;
  border: solid 2px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem;
}
article p {
  padding-bottom: 0.5rem;
}
span {
  display: inline-block;
}
h1 {
  margin: 0.75rem 0;
  font-size: 1.75em;
  line-height: 1.2em;
  color: #1E5181;
  text-align: center;
}
h1 span {
  font-size: 0.65em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0 0 0.5rem;
  list-style: none;
}
li {
  padding-left: 0.6rem;
}
ul li:before {
  content: "•";
  font-size: 1em;
  float: left;
  margin-left: -0.6rem;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer img {
  margin-top: 0.2rem;
}
@media only screen and (max-width:549px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  footer {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  footer p {
    text-align: center;
  }
  .hide_m {
    display: none;
  }
  a {
    display: inline-block;
  }
}