@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .875rem;
    line-height: 1.431em;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: solid thin #000;
    background-color: #fff;
    overflow: hidden;
}

header {
    padding: 2rem 3rem 1rem;
}

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;
    display: block;
}

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;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    30% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    64% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    97% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}

figure img {
    width: 25%;
    float: left;
}

@media only screen and (max-width:49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }
}

@media only screen and (max-width:47.875rem) {
    header {
        padding: 1rem;
    }

    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:34.375rem) {
    footer {
        display: block;
        column-gap: 0;
    }

    footer p,
    h1,
    h3 {
        text-align: center;
    }

    footer img,
    header img {
        margin: 0 auto;
    }
}

@media only screen and (max-width:23.437rem) {
    h3 {
        margin: 0 0 .625rem;
    }
}