@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700&display=swap');

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 300 1.125em/1.25 'Hind', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 545px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #004279;
    overflow: hidden;
    padding: 0;
    text-align: left;
}
a {
    color: #fff;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -0.5rem 0 0;
    font-size: 2.2em;
    line-height: 1.1;
}
strong, h1 {
    font-weight: 600;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
article {
    padding: 1rem 1.1rem 0.35rem;
}
article>p:first-of-type {
    font-size: 1.063em;
    word-spacing: 1px;
}
article p {
    padding-bottom: 1.5rem;
}
footer {
    padding: 0 1.1rem;
}
footer img {
    position: absolute;
    right: 1rem;
    bottom: 0.85rem;
}
@media only screen and (max-width:545px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .hide_m {
        display: none;
    }
    h1 {
        font-size: 1.6em;
    }
    footer img {
        position: static;
        margin-bottom: 0.5rem;
    }
}
