@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    text-decoration: underline;
    color: #0000ff;
}

h1 {
    font-size: 1.35rem;
    text-align: center;
color: #df363c;
}

h2 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}
ul li {
    margin-bottom: 0.15rem;
}

article {
    position: relative;
    padding: 1rem;
}


.center {
    text-align: center;
}

.red {
    color: #df363c;
}

.small {
    color: #8f8e8e;
    text-align: center;
    line-height: 1.2;
    font-size: 0.8rem;
    margin: 0;
}

footer {
    background-color: #5e5e5e;
    padding: 0.5rem 1rem;
}

footer p {
    color: #fff;
    font-size: 700;
    text-align: center;
    margin: 0;
    font-size: 0.8rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@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;
    }

    .img {
        display: none;
    }
}

@media only screen and (max-width: 48rem) {

}

@media only screen and (max-width: 40rem) {
    header {
        padding: 1rem;
    }
    
    article {
        padding: 1rem;
    }
    
    footer {
        padding: 1rem;
    }
}

