@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #444;
    font-family: "Helvetica", 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: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #009bdc;
    transition: .3s;
}

a.link:hover {
    color: #5a2572;
}

p {
    margin-bottom: 1rem;
}

.nowrap {
    display: inline;
    white-space: nowrap;
}

h1 {
    font-size: 34px;
    line-height: 1.2;
}

h1 span {
    font-size: 1.3rem;
    line-height: 1.28;
    font-weight: 400;
    display: block;
    margin: 1.5rem 0;
}

h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #5a2572;
    font-weight: 400;
    margin: 1.5rem 0;
}

h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 .5rem 1.75rem;
}

ul li:before {
    content: url("../images/check.png");
    float: left;
    margin-left: -1.75rem;
}

.image {
    position: absolute;
    top: 3rem;
    left: 2rem;
}

header {
    display: flex;
    padding: 2rem;
    background: linear-gradient(to right, #5a2572 33.3%, #2e2672 33.3%);
}

article {
    padding: 3rem 2rem 0 20rem;
    position: relative;
}

footer {
    padding: 0 2rem 1rem 20rem;
}

@media only screen and (max-width: 959px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .image {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 2rem;
    }

    article {
        padding: 2rem 2rem 0;
        position: relative;
    }

    footer {
        padding: 0 2rem 1rem;
    }
}

@media only screen and (max-width: 800px) {
    header {
        padding: 2rem 1rem;
        background: #2e2672;
    }

    article {
        padding: 2rem 1rem 0;
    }

    footer {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 608px) {
    header {
        justify-content: center;
    }

    h1 {
        text-align: center;
    }

    h1 span {
        margin: 1rem 0;
    }

    ul {
        padding-bottom: .5rem;
    }
}
