body {
    background-color: #fff;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    margin: 0;
}

h2 {
    color: #444;
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0;
    padding: 0 0 0.5em 0;
}

@media screen and (max-width: 650px) {
    h2 {
        font-size: 2.25rem
    }
}

label {
    display: block;
}

p, li, label, textarea {
    color: #444;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin: 0;
    padding-bottom: 0.75rem;
}

@media screen and (max-width: 650px) {
    p, li, label, textarea {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}

textarea {
    border: 3px solid #888;
    border-radius: 5px;
    color: #444;
    padding: 1rem;
    width: 36rem;
}

@media screen and (max-width: 650px) {
    textarea {
        display: block;
        margin: 0 auto;
        width: 15rem;
    }
}

button {
    background-color: #10A0D0;
    border-radius: 5px;
    border-style: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 900;
    outline: none;
    padding: 0.75rem 1.25rem 0.75rem 1.25rem;
    text-align: center;
    transition: all 150ms;
}

@media screen and (max-width: 650px) {
    button {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    button {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem 0.5rem 0.75rem;
    }
}

button:hover {
    color: #036b86;
}

button:active {
    color: #10A0D0;
    background-color: #036b86;
}

section {
    padding: 2rem 0 2rem 0;
}

@media screen and (max-width: 650px) {
    section {
        padding: 1.5rem 0 1.5rem 0;
    }
}

.page-container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 4rem 0 4rem;
}

@media screen and (max-width: 650px) {
    .page-container {
        padding: 0 2rem 0 2rem
    }
}

.feature-section {
    background-color: #eee;
}

.button-container {
    margin: 0 0 2.25rem 0;
    padding-bottom: 2rem;
}

@media screen and (max-width: 650px) {
    .button-container {
        margin: 0 0 1.25rem 0;
        padding-bottom: 1rem;
    }
}

.button-container:last-child {
    margin: 0;
}

.button-container button {
    margin-right: 2rem;
}

.bottom-border {
    border-bottom: 1px solid #eee;
}

.example-text {
    background-color: #eee;
    border-radius: 6px;
    color: #444;
    font-family: monospace;
    padding: 0.25rem 0.5rem 0.25rem 0.5rem;
}

.indent {
    margin-left: 2rem;
}

@media screen and (max-width: 650px) {
    .indent {
        margin-left: 1rem;
    }
}

.note-text {
    font-size: 1.25rem;
}

.logo {
    fill: #ED7333;
    width: 4rem;
    height: auto;
    position: absolute;
    right: 2rem;
    top: 2rem;
}

@media screen and (max-width: 650px) {
    .logo {
        right: 1rem;
        top: 1rem;
    }
}

a {
    color: #ED7333;
}


.mobile-only {
    display: none;
}

@media screen and (max-width: 650px) {
    .mobile-only {
        display: inherit
    }
}
