html {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
}

.flex-container {
    padding: 1em 0 3em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.content {
    max-width: 600px;
    min-width: 200px;
    width: 95%;
}

textarea {
    resize: vertical;
}

.success-alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.error-alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.menu {
    padding: 0.5em;
    background: #2d3e50;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.menu-list {
    position: relative;
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    margin: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}


.menu-link {
    background-color: transparent;
    display: block;
    text-decoration: none;
    white-space: nowrap;
    padding: .5em 1em;
    color: #6FBEF3;
}

.title {
    background-color: transparent;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    padding: .5em 1em;
    color: white;
    font-weight: 400;
    font-size: 120%;
    display: inline-block;
    vertical-align: middle;
}

form label {
    font-weight: bold;
    display: block;
    margin: 1em 0 0;
}

form input {
    width: 100%;
    font-size: 100%;
    padding: .5em .6em;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    margin: .25em 0;
}

form select {
    color: inherit;
    font: inherit;
    text-transform: none;
    padding: .5em .6em;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    height: 2.25em;
    border: 1px solid #ccc;
    background-color: #fff;
    display: block;
    margin: .25em 0;
    width: 100%;
}

form textarea {
    resize: vertical;
    color: inherit;
    font: inherit;
    overflow: auto;
    padding: .5em .6em;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    margin: .25em 0;
    width: 100%;
}

button {
    font: inherit;
    margin: 0 0 20px 0;
    text-transform: none;
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;
    box-sizing: border-box;
    font-family: inherit;
    padding: .5em 1em;
    border: none transparent;
    text-decoration: none;
    border-radius: 2px;
    background-color: #0078e7;
    color: #fff;
    width: 100%;
}


.menu li a:hover,
.menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}

.toggle-content {
    display: none;
}

.toggle-content.is-visible {
    display: block;
}


@media (min-width: 48em) {
    .menu {
        text-align: left;
    }

    .menu ul {
        float: right;
    }

    .content {
        width: 66%;
    }
}