@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 15px/1.5em 'Arial', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #26689D;
}

a.link:hover {
    text-decoration: underline;
}

header {
    padding: 2rem 0;
    display: flex;
    justify-content: flex-end;
}

article {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

article section {
    flex: 0 0 70%;
}

article aside {
    padding: 23rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

article aside .share-icons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

article h1 {
    font-size: 2.7rem;
    line-height: 120%;
    font-weight: normal;
    margin: 1.875rem 0;
}

article p {
    margin: 1rem 0;
}

.justify {
    text-align: justify;
}

article h2 {
    font-size: 1rem;
}

article ul {
    margin: .5rem 0 1.5rem 1.1rem;
}

article ul li::marker {
    color: #C60086;
}

article a.btn {
    background-color: #C60086;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: .5rem 1rem;
    margin: 1.5rem 0 0;
    display: block;
    width: fit-content;
}

article a.btn:hover {
    background-color: #0ba2e3;
}

footer {
    padding: 2rem 0 1rem;
}

footer .share {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: .5rem;
}

footer .share a {
    color: #fff;
    text-decoration: none;
}

footer .share i {
    border-radius: 3px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

footer .share .fa-facebook-f {
    background: #485a96;
}

footer .share .fa-twitter {
    background: #2daae1;
}

footer .share .fa-linkedin-in {
    background: #0e76a8;
}

footer .share .fa-xing {
    background: #005a5f;
}

footer .share .fa-envelope {
    background: #b6b6b6;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0 2rem 1rem;
    }

    article :is(p, ul) {
        hyphens: auto;
    }

    .justify {
        text-align: left;
    }
}

@media only screen and (max-width: 48rem) {
    header {
        justify-content: center;
    }

    article h1 {
        font-size: 2.1rem;
    }

    article {
        flex-direction: column;
    }

    article aside {
        padding: 1rem 0 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 30rem) {

    #wrapper {
        padding: 0 1rem 1rem;
    }

    article h1 {
        font-size: 1.7rem;
        margin: 1.25rem 0;
    }

    article aside {
        flex-direction: column;
        align-items: center;
    }

    article a.btn {
        width: 100%;
    }

    footer p {
        text-align: center;
    }

    footer .share {
        display: flex;
        justify-content: center;
    }
}