html {
    background-color: #fca63f;
}

h1, h2 {
    text-align: center;
}

p, ol {
    position: relative;
    left: 20%;
    width: 60%;
    text-align: justify;
}

h3 {
    background-color: black;
    color: white;

    border-radius: 5px;
    padding: 5px;
    padding-left: 10px;
}

img {
    border: 7px solid white;
    box-shadow: 0 0 5px;
}

#sections {
    padding-left: 0px;
}

li.section {
    clear: both;
    display: block;
}

ul.dishes li {
    display: inline-block;
    vertical-align: top;
    width: 320px;
    padding: 5px;
    margin: 0px 10px;

    border: 1px solid transparent;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

ul.dishes li:hover,
ul.dishes li.selected {
    border-color: black;
}

ul.dishes li.selected {
    background-color: #fdfbca;
    /* background-color: rgba(200, 200, 200, 0.7); */
}

.dishname {
    font-size: larger;
    font-family: Palatino;
    text-shadow: 0 0 4px white;
}

.altname {
    margin-bottom: 10px;
    font-size: small;
}

.ingredients {
    text-align: left;
    font-weight: bold;
}

.ingredient, .opt-ingredient {
    font-weight: normal;
}

/* .opt-ingredient:hover,*/
.rem-ingredient {
    cursor: pointer;
    text-decoration: line-through;
}

#info {
    margin: 15px;
}

label {
    display: inline-block;
}

textarea {
    vertical-align: top;
}

footer {
    text-align: center;
}
