@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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 {
    color: #093473;
    font: 400 1em/1.3em 'Montserrat', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #093473;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 1rem 0.5rem;
}
h1, h2 {
    font-weight: 400;
}
p {
    padding-bottom: 1rem;
}
.ml {
    margin-left: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.9em;
    line-height: 1.1;
    padding-left: 2rem;
}
h1:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -7px 0 0 -1rem;
}
h1 span {
    font-size: 0.6em;
    display: inline-block;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    background: #18A79B;
    padding: 0.5rem 2rem;
    margin: 1rem 0 2rem -1rem;
    display: inline-block;
    text-transform: uppercase;
}
a {
    color: #FFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
.flex {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    align-items: center;
}
header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
footer {
    padding: 1rem 1rem 0;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
footer figure {
    display: flex;
    justify-content: flex-end;
}
footer p:first-of-type {
    text-align: right;
}
footer {
    background: #093473;
}
footer p, h2 {
    color: #FFF;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    footer {
        position: static;
    }
    footer p {
        text-align: center !important;
    }
    footer figure {
        display: flex;
        justify-content: center;
    }
    .flex br {
        display: none;
    }
    .flex p {
        width: 80%;
    }
}