@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1.375em/1.3em Calibri, sans-serif;
   color: #fff;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 430px;
   border: solid 1px #0975BC;
   background: #0975BC;

}

figure {
   display: flex;
   justify-content: center;
   margin: 0 0 0.3rem;
}

p,
h1 {
   text-align: center;
}

p {
   padding-bottom: 2rem;
}

h1 {
   margin: 0rem 0rem 0rem;
   font-size: 2.8em;
   line-height: 1.1em;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

.big {
   font-size: 1.55em;
   line-height: 1.3;
   padding: 1rem 1rem 2rem;
}

.blue {
   color: #0975BC;
}

article p:last-of-type {
   font-size: 1.250em;
   line-height: 1.3;
}

article {
   padding: 0 1rem;
}

footer p:last-of-type {
   color: #363A41;
}

footer p {
   padding-bottom: 0.5rem;
}

footer {
   padding: 0.2rem 1rem 0;
   background: #fff;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:429px) {
   body {
      font-size: 1em;
      line-height: 1.3;
   }

   #wrapper {
      border: none;
      margin: 0 auto;
   }

   h1 {
      font-size: 2em;
   }

   p :is(span, a) {
      display: inline-block;
   }

   header br,
   article br {
      display: none;
   }
}
