@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.5rem;
    background: #f4f4f4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
    hyphens: auto;
}

:is(section,footer) {
    background: #fff;
    border-radius: 3px;
    padding: 1rem;
    margin: 1rem 0;
}

header {
    background: #fff;
}

header h1 {
    padding: 0 1rem 1rem;
    line-height: 120%;
    font-size: 2.3rem;
    margin: 1rem 0 0;
}

article h2 {
    font-size: 1rem;
    line-height: 120%;
    margin-bottom: .5rem;
}

article p:not(:last-of-type) {
    margin: 0 0 1rem;
    text-align: justify;
}

article ul {
    margin: .5rem 0 0 1.1rem;
}

footer .btn {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

footer .btn a.apply {
    background: #c61116;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: .5rem 2rem;
    border-radius: 7px;
}

footer p {
    font-size: 12px;
    text-align: center;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 1rem 1rem 0;
    }

    article p:not(:last-of-type) {
        text-align: left;
    }
}

@media only screen and (max-width: 30rem) {

    header h1 {
        font-size: 1.5rem;
        text-align: center;
    }
}