@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.5em Arial, Helvetica, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: solid thin #000;
    background-color: #fff;
    overflow: hidden;
}
.logo{
    margin: 2rem;
}
article {
    padding: 0 3rem 1rem;
    position: relative;
}
footer {
    padding: 1rem 3rem;
    color: #3A428E;
    background: url('../images/background.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 0.3rem;
}
p {
    text-align: left;
}
h1 {
    font-size: 2.231em;
    line-height: 1.1em;
    color: #3A428E;
    font-weight: normal;
    padding: 0.5rem 0;
    hyphens: none;
}
h2 {
    font-size: 1.061em;
    line-height: 1.231em;
    color: #3A428E;
}
h3 {
    font-size: 1.161em;
    line-height: 1.231em;
    color: #3A428E;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #3A428E;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
a.link {
    font-size: 1.231em;
    width: 12.5rem;
    line-height: 3.125rem;
    display: block;
    text-align: center;
    background: #FED32A;
    color: #3A428E;
    font-weight: bold;
    box-shadow: .125rem .187rem .187rem 0 rgba(0, 0, 0, 0.50);
    font-style: italic;
    position: absolute;
    bottom: 2.3rem;
    right: 2rem;
}
a.link:hover {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding-left: 0.95rem;
}
li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}
li:before {
    content: "\25A0";
    color: #3A428E;
    float: left;
    margin: -0.14rem 0 0 -0.938rem;
    font-size: .937rem;
}
@media only screen and (max-width:49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }
    .logo{
        display: flex;
        justify-content: center;
        margin: 1rem;
    }
}
@media only screen and (max-width:47.875rem) {
    article {
        padding: 0 1rem 1rem;
    }
    footer {
        padding: 1rem;
        justify-content: space-evenly;
        column-gap: 1rem;
    }
    footer img {
        margin: 0 auto;
    }
}
@media only screen and (max-width:42.937rem) {
    a.link {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 1.5rem auto .937rem;
        width: 100%;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:36rem) {
    footer {
        flex-direction: column;
        align-items: center;
        column-gap: 0;
        padding-bottom: 1rem;
    }
    footer p,h1,h3 {
        text-align: center;
    }
    footer img {
        margin: 0;
    }
    h1 {
        font-size: 1.7rem;
    }
}
@media only screen and (max-width:23.437rem) {
    h3 {
        margin: 0 0 .625rem;
    }
}