@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #444545;
    font-family: 'Helvetica Neue', 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 1px #000;
    padding: 2rem 3rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    margin: 0.25rem 0;
    font-weight: 400;
    color: #272525;
}

h2 {
    font-size: 1rem;
    margin-bottom: 0.313rem;
}

ul {
    padding: 0 0 1.5rem 1rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 1.875rem;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.button {
    display: flex;
    justify-content: center;
    padding-top: 1.875rem;
    border-top: 1px solid #ddd;
}

.button a {
    padding: 8px;
    min-width: 200px;
    text-align: center;
    background-color: #0066CC;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
    transition: .3s;
}

.button a:hover {
    background-color: #0066ccd2;
}

header {
    display: flex;
    padding-bottom: 1rem;
}

@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;
    }
}

@media only screen and (max-width: 46rem) {
    #wrapper {
        padding: 1rem;
    }

    header {
        justify-content: center;
    }

    .button {
        padding-top: 1rem;
    }

    h1,
    h1+p {
        text-align: center;
    }
}

@media only screen and (max-width: 35rem) {
    ul {
        padding-bottom: 1rem;
    }
}