@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 1.875rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}

h1 {
    text-align: center;
    font-size: 1rem;
    margin: 1rem 0;
}

h2 {
    font-size: 1rem;
    margin: 0 0 1.25rem;
}


header {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

header p {
    width: 61%;
}

p {
    text-align: justify;
    margin: 0 0 1.25rem;
}

article p:first-of-type {
    text-align: center;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem 1.875rem;
}

li {
    padding-left: 1.375rem;
}

li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375rem;
    line-height: 1;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem 2rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
        text-align: left;
    }

}

@media only screen and (max-width: 48rem) {
    header {
        flex-direction: column-reverse;
        row-gap: 1rem;
        align-items: center;
    }

    header p {
        width: 100%;
    }

    h2 {
        margin-bottom: .5rem;
    }
}

@media only screen and (max-width: 40rem) {
    #wrapper {
        padding: 1rem;
    }
}