@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
}
body {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    background: #eee;
    font-family: 'Open Sans', sans-serif;
    font-size: 16pt;
}

h6 {
    font-weight: 300;
}

a {
    background-color: #111;
    color: #fff;
    text-decoration: none;
    padding: 0 7.5px;
}
a:hover {
    background-color: #fff;
    color: #111;
    text-decoration: none;
}

ul li {
    margin-bottom: 7.5px;
}
ul li small {
    color: #b3cda6;
}
ul li small a {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
    background: none;
    padding: 0;
}
ul li small a:hover {
    text-decoration: underline;
    color: inherit;
    background: none;
}

ul.buttons {
    list-style: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
}
ul.buttons li {
    display: inline-block;
    padding: 4px 2px;
    margin: 0;
}

.container {
    display: block;
    width: 720px;
    height: auto;
    min-height: 100%;
    padding: 32px;
    margin: 32px auto;
    background: #fff;
}
.site-branding {
    display: block;
    width: 320px;
    max-width: 80%;
    padding: 64px 0 32px;
    margin: 0 auto;
    background: none;
}
.site-branding img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

header,
footer {
    text-align: center;
}

footer {
    display: block;
    width: auto;
    padding: 32px;
    margin: 0 -32px -32px;
    background-color: #eee;
}

@media (max-width: 720px) {
    .container {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
}

.progress {
    height: 20px;
    box-sizing: content-box;
    position: relative;
    background: #eee;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 10px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    margin: 1em 0;
}
.progress > span {
    display: block;
    height: 100%;
    width: 100%;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-color: rgb(179, 205, 166);
    position: relative;
    overflow: hidden;
}
.progress > span:after,
.progress.animate > span > span {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, .2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, .2) 50%,
        rgba(255, 255, 255, .2) 75%,
        transparent 75%,
        transparent
    );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.progress.animate > span:after {
    content: none;
    display: none;
}
.animate > span:after, .animate > span > span {
    animation: move 2s linear infinite;
}
@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

section {
    margin: 2em 0;
}

blockquote {
    display: block;
    width: 100%;
    height: auto;
    background-color: #eee;
    border-left: 4px solid #ddd;
    padding: 16px;
    margin: 1em 0;
}
blockquote.success {
    background-color: #5cb85c;
    border-left-color: #449d44;
    color: #fff;
    display: none;
}
blockquote.success:before {
    content: 'Success: ';
    font-weight: 700;
}
blockquote.error {
    background-color: #d9534f;
    border-left-color: #c9302c;
    color: #fff;
    display: none;
}
blockquote.error:before {
    content: 'Error: ';
    font-weight: 700;
}

blockquote .details {
    display: block;
    width: 100%;
    font-size: 14px;
}
blockquote pre {
    overflow-x: auto;
    background-color: #fff;
    color: #111;
    margin-bottom: 0;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}
blockquote pre.url {
    text-overflow: ellipsis;
    overflow-x: hidden;
}
blockquote pre.wrap {
    overflow-x: hidden;
    white-space: normal;
}
blockquote pre a {
    display: inline;
    background-color: transparent;
    padding: 0;
    color: inherit;
    font-weight: bold;
}
blockquote pre a:hover {
    text-decoration: underline;
}

form {
    text-align: right;
}
table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
td,
th {
    padding: 0.25em 0.5em;
    border: 0.125em solid #ddd;
}
td {
    font-size: 14pt;
}
th {
    font-size: 16pt;
}
input {
    width: 100%;
    border-color: black;
    border-width: 2px;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    appearance: none;
}
button {
    background-color: #111;
    color: #fff;
    text-decoration: none;
    padding: 0.5em;
    appearance: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}
button:hover {
    background-color: #fff;
    color: #111;
    text-decoration: none;
}
button.large {
    padding: 0.75em;
    font-size: 1.25rem;
}
