@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: #EBF0F0;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
    background-color: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 1rem;
}

h1 span {
    font-weight: 400;
    font-size: 1.3rem;
}

h2 {
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0.5rem 0 1rem 0;
    list-style-type: none;
}


ul li {
    background: url(../images/arrow.png) no-repeat left top;
    padding: 0 0 0 2rem;
}


header {
    padding: 2rem;
}

article {
    padding: 2rem;
}

footer {
    padding: 0 2rem 2rem
}

.button {
    display: flex;
    justify-content: center;
}

a.apply {
    background-color: #d8127e;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
}

a.apply:hover {
    background-color: #ba0a6b;
}

@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: 48rem) {
    header {
        padding: 1rem;
    }
    
    article {
        padding: 1rem;
    }
    
    footer {
        padding: 0 0 1rem;
    }
}

@media only screen and (max-width: 40rem) {

}

