html, body {
    font-family: 'Sansita Swashed', cursive;
    height: 100%;
    background: purple;
    margin: 0;
}

.wrapper {
    background: white;
    border-radius: 5px;
    margin: 60px auto;
    padding: 30px;
    width: 800px;
    height: 900px;
    margin-bottom: -50px;
}

.wrapper h1{
    font-family: 'Ubuntu', sans-serif;
    color: goldenrod;
}

.wrapper h1,
.wrapper h2 {
    text-align: center;
}

.wrapper h2 {
    font-size: 1.2rem;
    font-weight: normal;
    color: orange;
    margin-bottom: 3rem;
    margin-top: -1.2rem;
}

.wrapper form input[type='file'] {
    display: block;
    margin: 4rem auto;
    color: darkslateblue;
    font-family: 'ubuntu', sans-serif;
}

.wrapper form button {
    background: goldenrod;
    border-color: orange;
    border-radius: 5px;
    color: darkslateblue;
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem auto;
    padding: 1rem;
    width: 100%;
}

#predictions .food-photo,
#predictions .general,
#predictions .result,
#predictions .nutrition {
    background: darkslateblue;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin: 1rem auto;
    min-height: 550px;
    padding-top: 25px;
    position: relative;
    text-align: center;
    width: 50%;
}

#predictions .step {
    color: orange;
    font-size: 0.875rem;
    left: 0.5rem;
    line-height: 1rem;
    position: absolute;
    top: 0.5rem;
}

#predictions .step span {
    border: 2px solid goldenrod;
    border-radius: 50%;
    display: inline-block;
    font-weight: bold;
    height: 1rem;
    margin-right: 0.25rem;
    width: 1rem;
    text-align: center;
}

#predictions .nutrition .step span,
#predictions .result .step span {
    color: orange;
    border-color: goldenrod;
    font-weight: bold;
}

#predictions .nutrition,
#predictions .result {
    background: #f6f6f6;
    float: right;
}

#predictions #concepts h3 {
    margin: 0.25rem;
    color: darkslateblue;
}

#predictions #concepts img {
    display: block;
    margin: auto;
    max-height: 520px;
    max-width: 300px;
}

#predictions #concepts .loading {
    left: 50%;
    height: 100px;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 100px;
}

.footer{
    height: 50px;
}

.powered-by {
    font-style: italic;
    text-align: center;
    color: goldenrod;
    width: auto;
}

.powered-by img { height: 1rem; }