@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em "Roboto Condensed", sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 545px;
   border: solid 1px #01519B;
   background: #fff;
   padding: 1rem 1rem 0;
}

p {
   padding-bottom: 0.7rem;
   text-align: justify;
}

h1 {
   margin: 0 0 0.5rem;
   padding: 0.5rem;
   font-size: 2.3em;
   line-height: 0.8;
   background: #01519B;
   color: #fff;
   text-align: center;
}

h1 small {
   font-size: 0.55em;
}

.link {
   color: #01519B;
   font-size: 1.188em;
   line-height: 1.3;

}

h2 {
   color: #01519B;
   font-size: 1.063em;
   line-height: 1.3;
}

p small {
   font-size: 0.688em;
   line-height: 1.4;
   display: block;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0 0 0.5rem;
   list-style: none;
}

li {
   padding: 0 0 0 16px;
}

ul li:before {
   content: "\2022";
   font-size: 1.3em;
   margin: 0 0 0 -16px;
   float: left;
}

.center {
   text-align: center;
   font-size: 1.125em;
}



footer {
   position: absolute;
   right: 1rem;
   bottom: 1rem;
}

img {
   max-width: 100%;
   height: auto;

}

@media only screen and (max-width:544px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   .hide_m {
      display: none;
   }

   footer {
      position: static;
      display: flex;
      justify-content: center;
   }

   h1 {
      font-size: 2em;
      hyphens: auto;
   }

   p :is(a, span) {
      display: inline-block;
   }
}
