* {
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    line-height: 1.5;
    background-color: #f3f3f3;
    color: #000;
}

/* Text */
h1, h2, h3, h4, h5, h6 {
    margin: 10px 0 0 0;
    font-size: 1.1em;
    font-weight: 700;
}

h1 {
    font-size: 1.5em;
    font-weight: 700;
}

h2 {
    font-size: 1.25em;
}

.text-black {
    color: #000 !important;
}

/* Utilities */
.center-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Links */
a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}
a:hover {
    color: #555;
    text-decoration: underline;
}

/* Badges */
.badges {
    max-width: 400px;
    overflow: hidden;
}
.badges .download-badge {
    width: 50%;
    display: inline-block;
    float: left;
}
.badges .download-badge a {
    text-decoration: none;
}
.badges .download-badge img {
    width: 100%;
}

/* Buttons */
.button {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
}
.button:hover {
    text-decoration: none;
}

.button.light {
    color: #000;
    border: 2px solid #000;
}
.button.light:hover {
    color: #fff;
    background-color: #000;
}

.button.dark {
    color: #fff;
    border: 2px solid #fff;
}
.button.dark:hover {
    color: #000;
    background-color: #fff;
}


/* Content */
p {
    margin: 0 0 15px 0;
}

/* Elements */
.container {
    max-width: 1000px;
    margin: 0 auto;
}


/* Image */
.image {
    max-width: 50vw;
    max-height: 50vh;
}

/* Header */
#header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#header img {
    max-width: 100%;
    max-height: 40px;
}

#header .link {
    text-decoration: none;
    padding: 5px;
}
#header .link:hover {
    color: #000;
    text-decoration: underline;
}

/* Home */
.section {
    padding-top: 25px;
    padding-bottom: 25px;
}
.section h1 {
    font-size: 2em;
    line-height: 1em;
}
.section h2 {
    font-size: 1.25em;
    line-height: 1em;
}

.section.light {
    background-color: #fff;
    color: #000;
}
.section.dark {
    background-color: #000;
    color: #fff;
}


/* Page */
.paragraph {
    margin: 5px 0px;
}

/* Home */
.app {
    margin: 50px auto;
    text-align: center;
}
.app .image {
    max-width: 75%;
}



/* Video */
.video-container-portrait {
    position: relative;
    display: block;
    padding-bottom: 600px;
    overflow: hidden;
}

.video-container-portrait embed, .video-container-portrait iframe, .video-container-portrait object, .video-container-portrait video {
    display: block;
    position: absolute;
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 600px;
    top: 0;
    left: 0;
    border: 0;
}

.video-container-landscape {
    position: relative;
    display: block;
    padding-bottom: 600px;
    overflow: hidden;
}

.video-container-landscape embed, .video-container-landscape iframe, .video-container-landscape object, .video-container-landscape video {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 600px;
    top: 0;
    left: 0;
    border: 0;
}

/* Products */
.pricing-table {
    width: 50%;
    table-layout: fixed;
    text-align: left;
}

/* Footer */
#footer {
    background-color: #000;
    color: #fff;
    border-top: 3px solid #fff;
}

#footer h2 {
    font-size: 1.25em;
    margin-top: 25px;
}

#footer a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}
#footer a:hover {
    text-decoration: underline;
}

#footer ol {
    margin: 0;
    padding: 0;
}
#footer li {
    display: block;
    list-style-type: none;
}

#footer .copyright {
    padding-top: 50px;
}
#footer .copyright a {
    font-weight: bold;
}


/* Legal */
.legal {
    margin-top: 25px;
}

.legal h2 {
    display: inline;
    font-size: 1.25em;
    font-weight: bold;
}

.legal ol {
    counter-reset: item;
    margin: 0;
    padding: 0;
}
.legal ol ol {
    padding: 10px;
}

.legal li {
    display: block;
    list-style-type: none;
    margin-bottom: 25px;
    font-weight: bold;
}
.legal li li {
    margin-bottom: 10px;
    font-weight: normal;
}

.legal li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
    font-weight: bold;
    font-size: 1.25em;
}
.legal li li:before {
    font-weight: bold;
    font-size: 1em;
}

.legal .letters {
    counter-reset: letter;
}
.legal .letters li:before {
    content: counter(letter, lower-alpha) ". ";
    counter-increment: letter;
}

/* Large phone */
@media only screen and (min-width: 576px) {

    .image {
        max-width: 100%;
        max-height: 100%;
    }
}

/* Tablet */
@media only screen and (min-width: 750px) {

    body, html {
        font-size: 1.25em;
    }
}

/* Desktop */
@media only screen and (min-width: 1000px) {

    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section h1 {
        font-size: 3em;
    }
    .section h2 {
        font-size: 1.5em;
    }
}
