:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", sans-serif;
    line-height: 1.5em;
    font-size: 16px;
    color: #181716;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #231F20 solid;
    max-width: 800px;
    position: relative;
    padding: 30px;
    background-color: #FFF;
    overflow: hidden;
}

header {
    margin: 20px -30px;
    background: url(background.jpg) no-repeat bottom left;
    padding: 0 30px 20px;
}

.button {
    margin: 0 0 32px;
}

.button a {
    display: inline-block;
    width: 216px;
    padding: 10px 15px;
    background: #fff;
    color: #2900ed !important;
    border: 1px solid #2900ed;
    text-align: center;
    letter-spacing: .075em;
    font-size: 16px;
    line-height: 1.37143;
    font-weight: 700;
}

.button a:hover {
    background: #2900ed;
    color: #fff !important;
}

p {
    padding-bottom: 15px;
}

p.big {
    font-size: 102%;
}

:is(h2, strong) {
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

h1 {
    padding: 0 0 25px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #181716;
    text-decoration: none;
    white-space: nowrap;
}

.color {
    background-image: linear-gradient(90deg, #2900ed, #2900ed), linear-gradient(90deg, #ec6500, #2900ed);
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px, 0 1px;
    display: inline;
    text-decoration: none;
}

.color:hover {
    background-image: linear-gradient(90deg, #2900ed, #2900ed), linear-gradient(90deg, #ec6500, #2900ed);
    background-position: 100% 100%, 0 100%;
    background-size: 0 2px, 100% 2px;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 15px;
    list-style: none;
}

ul li {
    padding-left: 24px;
    margin: 15px 0;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 22px;
    text-indent: -18px;
    font-family: Arial, Helvetica, sans-serif;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 1rem;
    }

    :is(ul, p, h1) {
        hyphens: auto;
    }
}