@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 1.25em/1.2em "Time New Roman", serif;
}
#wrapper {
  position: relative;
  max-width: 540px;
  margin: 1rem auto;
  border: solid 2px #EE1E34;
  background: #fff;
  overflow: hidden;
  padding: 0.5rem 1rem;
}
p {
  padding-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
}
:is(a:link,a:hover,a:visited,a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
}
h1 {
  margin: 0 0 0.25rem;
  font-size: 2.25em;
  line-height: 1;
  color: #EE1E34;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.25rem;
}
header p {
  font-size: 1.2em;
  line-height: 1.3em;
}
.center :is(h1, p), header p {
  text-align: center;
}
.center {
  padding-bottom: 0.5rem;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p:first-of-type {
  color: #EE1E34;
  padding-bottom: 0.75rem;
  font-size: 0.96em;
  line-height: 1.3em;
}
.big {
  font-size: 1.1em;
  line-height: 1.3;
  display: inline-block;
  padding-bottom: 0.25rem;
}
@media only screen and (max-width: 549px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  span {
    display: inline-block;
  }
  .hide_m {
    display: none;
  }
  p {
    text-align: left;
  }
  h1 {
    font-size: 1.7em;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
  }
  footer p {
    text-align: center;
  }
}