@charset "utf-8";

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   color: #fff;
   font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}

#wrapper {
   position: relative;
   max-width: 555px;
   margin: 1rem auto;
   border: solid 2px #000;
   background: #1C58A8;
   overflow: hidden;
   padding: 0.5rem 1rem 0.5rem;
}

p {
   padding-bottom: 1rem;
   text-align: justify;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: #fff;
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

img {
   max-width: 100%;
   height: auto;
}

h1 {
   margin: 0 0 1rem 1.5rem;
   font-size: 2.1em;
   line-height: 1.1em;
}

h1 span {
   font-size: 0.875em;
}

h1,
strong {
   font-weight: 900;
}

h1:before {
   content: "•";
   display: inline-block;
   font-size: 1.5rem;
   float: left;
   margin: -1px 0 0 -1rem;
}

h2 {
   font-size: 1.2em;
   line-height: 1.3;
   margin-bottom: 0.75rem;
}

footer {
   display: flex;
   justify-content: flex-end;
   flex-direction: row-reverse;
   align-items: flex-end;
   gap: 1rem 3.5rem;
}

footer p {
   padding: 0;
}

footer span {
   display: inline-block;
}

.big {
   font-size: 1.25em;
   line-height: 1.3;
}

@media only screen and (max-width:554px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   h1 {
      margin-left: 1rem;
   }

   footer {
      flex-direction: column;
      align-items: center;
   }

   footer p {
      text-align: center;
   }
}
