@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}
:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
article p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    padding-bottom: .625rem;
}
h2 {
    font-size: 1rem;
    padding-bottom: .625rem;
}
ul {
    padding: 0 0 1rem 3rem;
}
hr {
    margin: .5rem 0 1.5rem;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 12s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    55% {
        opacity: 0;
    }
}
.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
header {
    display: flex;
    padding: 1.5rem 2rem;
    background-color: #009ee3;
}
article {
    padding: 1.5rem 2rem 0;
}
footer {
    padding: .5rem 2rem;
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    span{
        display: inline-block;
    }
}
@media only screen and (max-width: 48rem) {
    header {
        justify-content: center;
        padding: 1.5rem 1rem;
    }
    article {
        padding: 1.5rem 1rem 0;
    }
    footer {
        padding: 0 1rem;
    }
}
@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    h1+p {
        text-align: center;
    }
    ul {
        padding-left: 1rem;
    }
}