@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-slab-v36-latin-300.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-slab-v36-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-slab-v36-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-slab-v36-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-slab-v36-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-slab-v36-latin-300.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-slab-v36-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-slab-v36-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-slab-v36-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-slab-v36-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-slab-v36-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-slab-v36-latin-regular.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-slab-v36-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-slab-v36-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-slab-v36-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-slab-v36-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-slab-v36-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-slab-v36-latin-700.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0D5375;
    font: 400 1.375em/1.3em 'Roboto Slab', 'Times New Roman', serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 3px #004861;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1.375em;
    line-height: 1.1em;
    text-align: center;
    font-weight: 700;
}
h1 span {
    color: #C32828;
}
h1 small {
    font-size: 1em;
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header, article {
    transform: rotate(-10.5deg);
}
header {
    display: flex;
    justify-content: center;
}
footer {
    margin: -3rem -1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5.75rem 4.25rem 0.25rem;
    background-color: #004861;
    clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}
footer p {
    font-weight: 300;
    color: #fff;
}
@media only screen and (max-width: 699px) {
    body {
        font-size: 1.25em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header, article {
        transform: none;
    }
    h1 {
        padding: 1rem;
    }
    h1 :is(span, small) {
        display: inline-block;
    }
    footer {
        clip-path: none;
        margin-top: 0;
        padding: 1rem 2rem;
    }
}
@media only screen and (max-width: 530px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    footer {
        padding: 1rem;
    }
}