html, body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

body {
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    position: relative;
    text-align: center;
    font-family: Bahnschrift, Verdana, Geneva, Tahoma, sans-serif;
}

@media screen and (max-width: 768px) {
    .content {
        top: -24px;
    }
}

.content ul {
    list-style: none;
}

.header {
    position: relative;
    margin-bottom: 50px;
}

.section {
    position: relative;
    width: 90%;
    margin: auto auto;
    background-color: rgba(250, 250, 250, 0.5);
    padding: 10px;
    padding-bottom: 30px;
    border-radius: 15px;
    border: 1px solid rgb(100, 100, 100);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 35px;
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    .section {
        margin-bottom: 15px;
        border-radius: 5px;
    }
}

.section h1 {
    margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
    .section h1 {
        font-size: 1.5em;
        margin-top: 20px;
    }
}

.section li {
    font-weight: bold;
}

.features {
    position: relative;
    width: 100%;
}

.features-box {
    position: relative;
    display: inline-block;
    width: 30%;
}

@media screen and (max-width: 768px) {
    .features-box {
        width: 100%;
        text-align: left;
    }

    .features-box li {
        font-size: 1.0em;
    }
}

.button-big {
    position: relative;
    width: 100%;
}

.button-big a {
    display: block;
    width: 100%;
    background-color: #77be5d;
    color: white;
    border: 1px solid rgb(100, 100, 100);
    border-radius: 10px;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.button-big a:hover {
    background-color: #7fcf62;
    text-decoration: none;
}

.download {
    position: relative;
    display: inline-block;
}

.download a {
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .download a {
        margin-bottom: 10px;
    }
}

a.is-highlight-link {
    color: #3273dc;
    text-decoration: none;
    font-size: 1.5em;
}

@media screen and (max-width: 768px) {
    a.is-highlight-link {
        font-size: 1.2em;
    }
}

a.is-highlight-link:hover {
    color: #3273dc;
    text-decoration: underline;
}

.icons {
    position: relative;
}

.icons a {
    margin-left: 15px;
    margin-right: 15px;
}

.icons i {
    color: rgb(67, 67, 67);
}

@media screen and (max-width: 768px) {
    .icons i {
        margin-bottom: 20px;
    }
}